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

org.treeleafj.xmax.export.func.NumberFomatFunc Maven / Gradle / Ivy

The newest version!
package org.treeleafj.xmax.export.func;

import java.text.DecimalFormat;

/**
 * Created by leaf on 2017/4/20.
 */
public class NumberFomatFunc implements Func {

    public String formatYuanFen(Double n) {
        if (n == null) {
            return "";
        }
        DecimalFormat format = new DecimalFormat("##,###.00");
        return format.format(n);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy