DecimalFormat格式正在删除小数点前的前导0

DecimalFormat格式正在删除小数点前的前导0

本文介绍了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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 00:53