- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
在文件对象上调用 .length() 时,超过 2 GB 的文件返回不正确的值。
这是在 tomcat 容器中运行的 Web 应用程序中发生的。
例如,Windows 报告为 2,083,344,714 字节的文件从 Java 返回为 1887961088。
以下是环境细节:
所以我立即怀疑与 32 位虚拟机有关,但一切似乎都在 64 位中运行。我完全被难住了,任何帮助将不胜感激,如果只是帮助开发一些测试以查看问题是否与以某种方式在 32 模式下运行的东西有关..
编辑:
回答一些评论:当我使用相同的 JVM(仅输出 file.length)运行一个非常简单的测试用例时,我得到了正确的值:2,083,344,714。
我非常有信心这应该工作,我只是觉得我的 tomcat 配置/java 配置/应用程序让我很难过。它只影响超过一定大小的文件这一事实确实使它看起来像是 32 位与 64 位的问题,但据我所知一切都是 64 位的。
编辑 2:开始怀疑这几乎是不可能的,而且我可能遇到一个问题,即线程在文件被完全复制之前占用了文件的长度。如果有人关心,我会在弄清楚后发布在这里:-)
最佳答案
似乎对我来说很好......
Windows 7 x64 上的 pagefile.sys,DOS 报告为 8446545920 字节
Java 7.0_02 x328446545920/7.87 GB
Java 1.6_30 x328446545920/7.87 GB
import java.io.File;
import java.text.NumberFormat;
public class TestFileSize {
public static void main(String[] args) {
File test1 = new File("C:/pagefile.sys");
File test2 = new File("C:/hiberfil.sys");
System.out.println(test1.length() + " / " + ByteFormatter.format(test1.length()));
System.out.println(test2.length() + " / " + ByteFormatter.format(test2.length()));
}
public static class ByteFormatter {
public static final long KILO_BYTES = 1024;
public static final long MEGA_BYTES = 1024 * KILO_BYTES;
public static final long GIGA_BYTES = 1024 * MEGA_BYTES;
public static final long TERA_BYTES = 1024 * GIGA_BYTES;
public enum Format {
TeraBytes(TERA_BYTES),
GigaBytes(GIGA_BYTES),
MegaBytes(MEGA_BYTES),
KiloBytes(KILO_BYTES);
private long multiplier;
private Format(long multiplier) {
this.multiplier = multiplier;
}
public long getMultiplier() {
return multiplier;
}
}
public static String format(long bytes) {
NumberFormat nf = NumberFormat.getNumberInstance();
nf.setMaximumFractionDigits(2);
nf.setMinimumFractionDigits(0);
String format = bytes + " bytes";
if (bytes / TERA_BYTES > 0) {
format = nf.format((double) bytes / TERA_BYTES) + " tb";
} else if (bytes / GIGA_BYTES > 0) {
format = nf.format((double) bytes / GIGA_BYTES) + " gb";
} else if (bytes / MEGA_BYTES > 0) {
format = nf.format((double) bytes / MEGA_BYTES) + " mb";
} else if (bytes / KILO_BYTES > 0) {
format = nf.format((double) bytes / KILO_BYTES) + " kb";
} else {
format = nf.format(bytes) + " bytes";
}
return format;
}
public static String formatMegaBytes(long lMegaBytes) {
return format((long) ((double) lMegaBytes * MEGA_BYTES));
}
public static String formatKiloBytes(long kbytes) {
return format(kbytes * KILO_BYTES);
}
public static String formatGigaBytes(long gbytes) {
return format(gbytes * GIGA_BYTES);
}
public static String formatTeraBytes(long gbytes) {
return format(gbytes * TERA_BYTES);
}
public static long toBytes(String value, Format format) {
long multipler = format.getMultiplier();
long bytes = (long) (Double.parseDouble(value.trim()) * multipler);
return bytes;
}
public static long toBytes(String sValue) {
long lBytes = 0;
if (sValue.indexOf(" ") > -1) {
String sElements[] = sValue.split(" ");
lBytes = Long.parseLong(sElements[0]);
if (sElements[1].toLowerCase().startsWith("gb")) {
lBytes *= GIGA_BYTES;
} else if (sElements[1].toLowerCase().startsWith("mb")) {
lBytes *= MEGA_BYTES;
} else if (sElements[1].toLowerCase().startsWith("kb")) {
lBytes *= KILO_BYTES;
}
} else {
sValue = sValue.trim();
long lMultiplier = 1;
String sBytes = null;
if (sValue.toLowerCase().endsWith("gb")) {
sBytes = sValue.substring(0, sValue.toLowerCase().indexOf("gb"));
lMultiplier = GIGA_BYTES;
} else if (sValue.toLowerCase().endsWith("mb")) {
sBytes = sValue.substring(0, sValue.toLowerCase().indexOf("mb"));
lMultiplier = MEGA_BYTES;
} else if (sValue.toLowerCase().endsWith("kb")) {
sBytes = sValue.substring(0, sValue.toLowerCase().indexOf("kb"));
lMultiplier = KILO_BYTES;
}
lBytes = Long.parseLong(sBytes);
lBytes *= lMultiplier;
}
return lBytes;
}
}
}
关于java - File.length() 在 Java 中返回不正确的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12850312/
我找到了以下代码片段: length = length and length or len(string) 在我看来,这应该等同于: length = length or len(string) 我能
当我使用 numpy.shape() 检查数组的形状时,我有时会得到 (length,1) 有时会得到 (length,)。看起来区别在于列向量与行向量......但它似乎并没有改变数组本身的任何内容
我正在学习 Java,有一个简单的问题。 在设置类的示例中,我看到了这一点: length >= 0 ? length : length * -1 这是什么意思? 谢谢。 最佳答案 这是一种骇人听闻的
我在阅读有关在 Ruby 中重新定义方法有多么容易的文章时遇到了以下问题: class Array alias :old_length :length def length old_l
例如在下面的代码中a和b和c是相等的。 EditText editText; editText = (EditText) findViewById(R.id.edttxt); editText.set
在昨天教授我的 JavaScript 类(class)时,我和我的学生遇到了一些有趣的功能,我认为这些功能可能值得在一个问题和我得出的答案中捕捉到。 在 Chrome 的 JS 控制台中输入 Arra
这个问题在这里已经有了答案: How can I get the size of an array, a Collection, or a String in Java? (3 个回答) 3年前关闭。
这个问题在这里已经有了答案: length and length() in Java (8 个答案) 关闭 6 年前。 我注意到在计算数组的长度时,你会这样写: arrayone.length; 但
console.log(this.slides.length()); 打印 Cannot read property 'length' of undefined.在 setTimeout 为 100
在搜索stackoverflow问题时,我发现了此链接: Error in file.download when downloading custom file。 但是,我的情况有些不同(我认为):
这个问题已经有答案了: Why does R use partial matching? (1 个回答) 已关闭 8 年前。 大家。我刚刚开始使用 swirl 学习 R 编程。 我刚刚了解到seq 。
这个问题已经有答案了: Why does R use partial matching? (1 个回答) 已关闭 8 年前。 大家。我刚刚开始使用 swirl 学习 R 编程。 我刚刚了解到seq 。
这个问题已经有答案了: How can I get the size of an array, a Collection, or a String in Java? (3 个回答) 已关闭 9 年前。
我有一个大数组,其中包含所有类型( bool 值,数组,null,...),并且我正在尝试访问它们的属性arr[i].length,但有些其中显然没有长度。 我不介意那些缺少长度的人是否返回未定义(我
我在对象的属性中有一些文本。我正在测试对象的属性中是否有要显示的文本;如果没有,那么我显示“-”而不是空白。看起来没有什么区别: if (MyObject.SomeText && MyObject.S
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: Why is String.length() a method? Java - Array's length
这个问题在这里已经有了答案: obj.length === +obj.length in javascript (4 个答案) 关闭 9 年前。 我一直在读underscore.js源代码并在 _.
#include using std::cout; using std::cin; using std::string; int main(){ cout > name; cout
我正在细读 underscore.js annotated source当我遇到这个时: if (obj.length === +obj.length) {...} 我现在从this stackove
我正在查看 dotnet 运行时中的一些代码,我注意到不是这样写的: if (args.Length > 0) 他们使用这个: if (args is { Length: > 0}) 你知道用第二种方
我是一名优秀的程序员,十分优秀!