概述
常用小数位处理
public class NumUtils {
/**
* 获取二位小数
* 场景:整形数据存储单价( * 100)后, 再除 100,取数据显示
* @param num
* @return
*/
public static double getTwoDecimal(Integer num) {
return Math.round(num) / 100.00;
}
public static Integer getTwoDecimal(String num) {
return new Double(Math.round(Double.valueOf(StringUtils.trim(num))
* 100)).intValue();
}
public static Integer getTwoDecimal(Double num) {
return new Double(Math.round(num
* 100)).intValue();
}
/**
* 百分比
* @param num
* @return
*/
public static double getPercent(Integer num) {
if (num <= 0) {
return 0;
}
return num / 100.00;
}
/**
* 计算两个数的百分比,转整形,精确到万位
* @param num1
* @param num2 除数
* @return
*/
public static Integer getFourDecimal(Double num1, Double num2) {
return getFourDecimal(num1 / num2);
}
// 同等
public static Integer getFourDecimal(Integer num1, Integer num2) {
NumberFormat numberFormat = NumberFormat.getInstance();
numberFormat.setMaximumFractionDigits(2);
return getFourDecimal(new Double(numberFormat.format(((float) num1 / (float) num2) * 100)) / 100);
}
/**
* 转整形,精确到万位
* @param num
* @return
*/
public static Integer getFourDecimal(Double num) {
return new Double(Math.round(Double.valueOf(num)
* 10000)).intValue();
}
public static Integer getFourDecimal(String num) {
return new Double(Math.round(Double.valueOf(StringUtils.trim(num))
* 10000)).intValue();
}
/**
* 保留后两位,能四舍五入
* @param num
* @return
*/
public static String fixedTwo(double num) {
return String.format("%.2f", num);
}
/**
* 亿位, 四舍五入保留2位小数, 展示千分位
*/
public static String getTwoDecimal(int num) {
DecimalFormat df = new DecimalFormat("##,##0.00");
return df.format(num);
}
/**
* 十亿位, 四舍五入保留2位小数,展示千分位
*/
public static String twoBigDecimal(int num) {
DecimalFormat df = new DecimalFormat("##,##0.00");
return df.format(new BigDecimal(num));
}
/**
* 亿位, 四舍五入保留2位小数, 不展示千分位
*/
public static String twoDecimalNotThousand(Object num) {
DecimalFormat df = new DecimalFormat("#.00");
return df.format(num);
}
}
最后
以上就是醉熏小蘑菇为你收集整理的JAVA----常用小数位处理的全部内容,希望文章能够帮你解决JAVA----常用小数位处理所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复