java 判断文件的大小
Posted wc_nan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 判断文件的大小相关的知识,希望对你有一定的参考价值。
public static String getNetFileSizeDescription(long size) { StringBuffer bytes = new StringBuffer(); DecimalFormat format = new DecimalFormat("#####.0"); if (size >= 1024 * 1024 * 1024) { double i = (size / (1024.0 * 1024.0 * 1024.0)); bytes.append(format.format(i)).append("GB"); } else if (size >= 1024 * 1024) { double i = (size / (1024.0 * 1024.0)); bytes.append(format.format(i)).append("MB"); } else if (size >= 1024) { double i = (size / (1024.0)); bytes.append(format.format(i)).append("KB"); } else if (size < 1024) { if (size <= 0) { bytes.append("0B"); } else { bytes.append((int) size).append("B"); } } return bytes.toString(); }
非本人原创
以上是关于java 判断文件的大小的主要内容,如果未能解决你的问题,请参考以下文章