本文介绍了DecimalFormat 格式正在删除小数点前的前导 0的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
import java.text.DecimalFormat;
static DecimalFormat df4 = new DecimalFormat("#.0000");
Double a = 3591000;
Double d = a/10000000;
String str = df4.format(d);
这里我期待 0.3591,但 df4.format 删除了十进制前的 0.打印 .3591
Here i am expecting 0.3591, but df4.format is removing 0 before decimal. printing .3591
推荐答案
使用
static DecimalFormat df4 = new DecimalFormat("0.0000")
根据文档:
# : 零表示不存在
而 0
没有.
这篇关于DecimalFormat 格式正在删除小数点前的前导 0的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!