我正在尝试从 ZIP 存档中读取 XML 文件。相关代码如下:
ZipInputStream zis = new ZipInputStream(is);
ZipEntry entry = zis.getNextEntry();
while(entry != null) {
if(entry.getName().equals("plugin.xml")) {
int size = (int)entry.getSize();
byte[] bytes = new byte[size];
int read = zis.read(bytes, 0, size);
System.out.println("File size: " + size);
System.out.println("Bytes read: " + read);
}
}
这在工作时会产生如下输出:
File size: 5224
Bytes read: 5224
正在读取的plugin.xml
文件没有什么特别之处,并且通过了我能找到的任何 XML 验证,但是,对 XML 文件的微小更改(删除字符、添加字符等)有时会导致从输入流中“读取的字节数”为小于文件大小。在这种情况下,我更改了与上述相同文件的 XML 属性的文本值,并得到以下结果:
File size: 5218
Bytes read: 5205 // the reader stopped early!
关于哪些 XML 文件可以工作,哪些不能工作,我看不到任何模式。这似乎是完全随机的。
有没有人遇到过这样的事情?
编辑:忘了提及,读取plugin.xml
文件的 Java 代码嵌入在我无法更改的现成应用程序中。我的问题是试图理解为什么它在某些情况下不接受我的 XML 文件。