摘要:
这个方法就是把文件的大小 formet成常用的文件格式,其实之间转化就是1024的转化 package com.zhangkeinfo.test;import java.text.DecimalFormat;/** * 格式化文件文件大小 * @author spring sky * */public class FileSize { public static void main(String[] args)throws Exception { System.out.println(FormetFileSize(100)); System.out.println(FormetFileS... 阅读全文