All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.bingoohuang.utils.lang.Money Maven / Gradle / Ivy

There is a newer version: 0.0.25
Show newest version
package com.github.bingoohuang.utils.lang;


import java.text.DecimalFormat;

public class Money {
    public static String rmb(long liMoney) {
        DecimalFormat df = new DecimalFormat("0.00");
        return "¥" + df.format(liMoney / 1000.);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy