JAVA 获取文件字节大小转换成 kb、M、G 等单元 工具类

https://www.jianshu.com/p/4610944ee9be

public static String readableFileSize(long size) { if (size <= 0) return "0"; final String[] units = new String[]{"B", "KB", "MB", "GB", "TB"}; int digitGroups = (int) (Math.log10(size) / Math.log10(1024)); return new DecimalFormat("#,##0.#").format(size / Math.pow(1024, digitGroups)) + " " + units[digitGroups]; }

 

 

你可能感兴趣的:(JAVA 获取文件字节大小转换成 kb、M、G 等单元 工具类)