概述
1.使用于大多数的情况
import java.text.NumberFormat;
/**
* Double转化为百分数
* @author ganhongliang
* @date 2018年10月1日
*/
public class DoubleToPercentformat {
/**
*
* @param d
* @param IntegerDigits
* @param FractionDigits
* @return String
* @time 2018年10月1日 上午11:09:35
*/
public static String getPercentFormat(double d,int IntegerDigits,int FractionDigits){
NumberFormat nf = java.text.NumberFormat.getPercentInstance();
nf.setMaximumIntegerDigits(IntegerDigits);//小数点前保留几位
nf.setMinimumFractionDigits(FractionDigits);// 小数点后保留几位
String str = nf.format(d);
return str;
}
public static void main(String[] args) {
System.out.println(getPercentFormat(0.9999, 2, 2));
}
}
运行结果:99.99%
2.特殊情况:测试0.99999
public static void main(String[] args) {
System.out.println(getPercentFormat(0.99999, 2, 2));
}
运行结果:00.00%
结论:当数字大于0.99995,结果都为00.00%
最后
以上就是长情钥匙为你收集整理的java中double转化为百分数的全部内容,希望文章能够帮你解决java中double转化为百分数所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复