gpt4 book ai didi

Java - 解压缩以不同方式压缩的文件

转载 作者:行者123 更新时间:2023-12-01 15:57:43 26 4
gpt4 key购买 nike

创建这个应用程序已经变得很痛苦!我想使用 Java 解压缩由许多不同应用程序创建的 .zip 文件:使用我的 7-zip 效果非常好,使用某人的 winrar 来压缩文件完全搞乱了它们!这是我的代码:

 public static void ExtractModZip(File Zip, File Dest) {
try {
if (Zip.getName().toLowerCase().endsWith(".zip")) {
}
ZipFile zip = new ZipFile(Zip);
System.out.println(zip.getName() + " opened.");
Enumeration entries = zip.entries();
String ModName = Zip.getName().substring(0, Zip.getName().length() - 4);
File base = new File(Dest + File.separator + ModName);
base.mkdirs();
InputStream entryStream = null;
FileOutputStream fos = null;
while (entries.hasMoreElements()) {
ZipEntry entry = (ZipEntry) entries.nextElement();
entryStream = zip.getInputStream(entry);
String entryName = entry.getName().replace('/', File.separatorChar);
entryName = entryName.replace('\\', File.separatorChar);


if (!entry.isDirectory()) {
File file = new File(base + File.separator + entryName);
File Base = new File(base + File.separator);
if (!Base.exists()) {
Base.mkdirs();
}

fos = new FileOutputStream(file);
try {
// Allocate a buffer for reading the entry data.
byte[] buffer = new byte[1024];
int bytesRead;
// Read the entry data and write it to the output file.
while ((bytesRead = entryStream.read(buffer)) != -1) {
fos.write(buffer, 0, bytesRead);
}
System.out.println(entry.getName() + " extracted.");
} catch (Exception e) {
e.printStackTrace();
}


} else {
File file = new File(base + File.separator + entryName);
file.mkdir();
}
}
fos.close();
entryStream.close();
} catch (ZipException ex) {
Logger.getLogger(fileUtils.class.getName()).log(Level.SEVERE, null, ex);
} catch (IOException ex) {
Logger.getLogger(fileUtils.class.getName()).log(Level.SEVERE, null, ex);
}
}

示例:我用这个方法解压了fie,它完全错过了里面的一个文件夹和某些文件......

最佳答案

尝试不同的 unzip(解压缩)实现。 TrueZIP众所周知。

关于Java - 解压缩以不同方式压缩的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4770371/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com