Java 常用类库 之 DecimalFormat 小数格式化
Posted verejava
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java 常用类库 之 DecimalFormat 小数格式化相关的知识,希望对你有一定的参考价值。
http://www.verejava.com/?id=16993061762593
import java.text.*;
public class TestCalendar3
{
public static void main(String[] args)
{
long startTime=System.currentTimeMillis();
for(int i=0;i<1000000;i++)
{
}
long endTime=System.currentTimeMillis();
System.out.println(endTime-startTime);
DecimalFormat df=new DecimalFormat("###.00");
System.out.println(df.format(1234.23644));
}
}
http://www.verejava.com/?id=16993061762593
以上是关于Java 常用类库 之 DecimalFormat 小数格式化的主要内容,如果未能解决你的问题,请参考以下文章