我想知道是否有人知道在Java / JSP / JSTL页面中格式化文件大小的好方法。
是否有这样的工具类吗?
我搜索了公地但却一无所获。任何自定义标签?
库已经存在吗?
理想情况下,我希望它的行为类似于Unix的 ls 命令中的 -h 开关
34 - > 34个
795 - > 795个
2646 - > 2.6K
2705 - > 2.7K
4096 - > 4.0K
13588 - > 14K
28282471 - > 27M
28533748 - > 28M
答案 0 :(得分:6)
快速谷歌搜索从Appache hadoop项目返回this。从那里复制: (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处理&lt; 1024情况。
答案 1 :(得分:5)
您可以使用commons-io FileUtils.byteCountToDisplaySize
方法。对于JSTL实现,您可以在类路径上使用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 -->