我有一个 JarInputStream(由一个包含 JAR 文件的字节数组构成)并想从中读取一个特定的文件。所以我遍历包含的 ZipEntries 并搜索文件。然后我尝试将文件写入字节数组。
但是,文件不知何故没有被完全读取。如果我将它写入文件系统并在文本编辑器中打开它,它只会在正确读取的前几行之后包含 NULL。
代码如下所示:
JarInputStream is = new JarInputStream(new ByteArrayInputStream(_jarFile));
ZipEntry entry = is.getNextEntry();
while (entry != null) {
if (entry.getName().endsWith(".xyz")) {
// read the *.xyz file and load it into a byte array
int size = (int) entry.getSize();
byte[] _xyzFile = new byte[size];
is.read(_xyzFile, 0, size);
break;
}
entry = is.getNextEntry();
}
is.close();
该size
变量肯定包含正确的字节数,所以我不知道为什么读取几行后就停止了。