概述
DecimalFormat df=new DecimalFormat("0.00");
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
float temp1=(float)file.getLen()/1024;
if(temp1<1024){
System.out.println(df.format(temp1)+" KB");
}else if(temp1>=1024 && temp1<1048576){
System.out.println(df.format((float)temp1/1024)+" M");
}else if(temp1>=1048576){
System.out.println(df.format((float)temp1/1048576)+" G");
}
转载于:https://my.oschina.net/mkh/blog/78301
最后
以上就是忧心水池为你收集整理的java中时间和浮点数格式设置的全部内容,希望文章能够帮你解决java中时间和浮点数格式设置所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复