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

posted @ 2018-06-23 10:40  verejava  阅读(273)  评论(0编辑  收藏  举报