我正在尝试在 JavaScript 中转换以字节表示的文件大小,如下所示(HTML 5)。
function formatBytes(bytes)
{
var sizes = ['Bytes', 'kB', 'MB', 'GB', 'TB'];
if (bytes == 0)
{
return 'n/a';
}
var i = parseInt(Math.log(bytes) / Math.log(1024));
return Math.round(bytes / Math.pow(1024, i), 2) + sizes[i];
}
但是我需要在需要时以 SI 和二进制单位表示文件大小,例如,
kB<--->KiB
MB<--->MiB
GB<--->GiB
TB<--->TiB
EB<--->EiB
这可以在 Java 中完成,如下所示(对方法使用一个额外的布尔参数)。
public static String formatBytes(long size, boolean si)
{
final int unitValue = si ? 1000 : 1024;
if (size < unitValue)
{
return size + " B";
}
int exp = (int) (Math.log(size) / Math.log(unitValue));
String initLetter = (si ? "kMGTPE" : "KMGTPE").charAt(exp-1) + (si ? "" : "i");
return String.format("%.1f %sB", size / Math.pow(unitValue, exp), initLetter);
}
JavaScript 中的一些等效代码可能如下所示。
function formatBytes(size, si)
{
var unitValue = si ? 1000 : 1024;
if (size < unitValue)
{
return size + " B";
}
var exp = parseInt((Math.log(size) / Math.log(unitValue)));
var initLetter = (si ? "kMGTPE" : "KMGTPE").charAt(exp-1) + (si ? "" : "i");
alert(size / Math.pow(unitValue, exp)+initLetter);
//return String.format("%.1f %sB", size / Math.pow(unitValue, exp), initLetter);
}
正如前面代码片段(最后一个)中的注释行所示,我无法在 JavaScript 中编写等效语句。当然,在 JavaScript 中还有其他方法可以做到这一点,但我正在寻找一种简洁的方法,更准确地说,是否可以在 JavaScript/jQuery 中编写等效的语句。可能吗?