嗨,我是 android 编程新手。
我正在尝试创建一个程序来解压缩我的 sd 卡中的压缩文件,我在调试时注意到了一些东西。
public void testZipOrder() throws Exception {
File file = new File(_zipFile);
zis = new ZipInputStream(new FileInputStream(file));
ZipEntry entry = null;
while ( (entry = zis.getNextEntry()) != null ) {
System.out.println( entry.getName());
}
}
}
这给了我一个输出:
06-27 00:42:06.360: I/System.out(15402): weee.txt
06-27 00:42:06.360: I/System.out(15402): hi/bye.txt
06-27 00:42:06.360: I/System.out(15402): hi/hiwayne.txt
是不是应该给
weee.txt
hi/
hi/bye.txt
hi/hiwayne.txt
还是显示其文件夹的东西?