5

我想知道是否有人知道在 Java/JSP/JSTL 页面中格式化文件大小的好方法。

是否有一个 util 类可以做到这一点?
我搜索了公地,但一无所获。有自定义标签吗?
是否已经存在为此的库?

理想情况下,我希望它的行为类似于Unix 的ls命令上的-h开关

34 -> 34
795 -> 795
2646 -> 2.6K
2705 -> 2.7K
4096 -> 4.0K
13588 -> 14K
28282471 -> 27M
28533748 -> 28M

4

2 回答 2

7

一个快速的谷歌搜索从 Appache hadoop 项目返回给我这个。从那里复制:(Apache 许可证,2.0 版):

private static DecimalFormat oneDecimal = new DecimalFormat("0.0");

  /**
   * Given an integer, return a string that is in an approximate, but human 
   * readable format. 
   * It uses the bases 'k', 'm', and 'g' for 1024, 1024**2, and 1024**3.
   * @param number the number to format
   * @return a human readable form of the integer
   */
  public static String humanReadableInt(long number) {
    long absNumber = Math.abs(number);
    double result = number;
    String suffix = "";
    if (absNumber < 1024) {
      // nothing
    } else if (absNumber < 1024 * 1024) {
      result = number / 1024.0;
      suffix = "k";
    } else if (absNumber < 1024 * 1024 * 1024) {
      result = number / (1024.0 * 1024);
      suffix = "m";
    } else {
      result = number / (1024.0 * 1024 * 1024);
      suffix = "g";
    }
    return oneDecimal.format(result) + suffix;
  }

它使用 1K = 1024,但如果您愿意,可以调整它。您还需要使用不同的 DecimalFormat 处理 <1024 的情况。

于 2009-04-29T11:47:27.887 回答
5

您可以使用 commons-ioFileUtils.byteCountToDisplaySize方法。对于 JSTL 实现,您可以在 classpath 上有 commons-io 时添加以下 taglib 函数:

<function>
  <name>fileSize</name>
  <function-class>org.apache.commons.io.FileUtils</function-class>
  <function-signature>String byteCountToDisplaySize(long)</function-signature>
</function>

现在在您的 JSP 中,您可以执行以下操作:

<%@ taglib uri="/WEB-INF/FileSizeFormatter.tld" prefix="sz"%>
Some Size: ${sz:fileSize(1024)} <!-- 1 K -->
Some Size: ${sz:fileSize(10485760)} <!-- 10 MB -->
于 2013-10-08T16:15:03.263 回答