zip压缩包中文问题
String unZipFile="/**/**/**.zip";
ZipInputStream zin = new ZipInputStream(new FileInputStream(unZipFile));
ZipEntry entry;
while((entry =zin.getNextEntry()) != null){
out.print(entry.toString()+"<br>");
zin.closeEntry();
}
zin.close();
当压缩包里面包含中文文件的时候,就要抛出java.lang.IllegalArgumentException异常 研究了好久都没有解决 哪位高手能解决 给100分