我正在使用 Apache Commons 1.4.1 库来压缩和解压缩".tar.gz"
文件。
最后一点我遇到了麻烦 - 将 aTarArchiveInputStream
转换为FileOutputStream
.
奇怪的是,它打破了这条线:
FileOutputStream fout = new FileOutputStream(destPath);
destPath
是具有规范路径的文件:C:\Documents and Settings\Administrator\My Documents\JavaWorkspace\BackupUtility\untarred\Test\subdir\testinsub.txt
产生的错误:
Exception in thread "main" java.io.IOException: The system cannot find the path specified
知道它可能是什么吗?为什么它无法找到路径?
我在下面附上整个方法(其中大部分是从这里提取的)。
private void untar(File dest) throws IOException {
dest.mkdir();
TarArchiveEntry tarEntry = tarIn.getNextTarEntry();
// tarIn is a TarArchiveInputStream
while (tarEntry != null) {// create a file with the same name as the tarEntry
File destPath = new File(dest.toString() + System.getProperty("file.separator") + tarEntry.getName());
System.out.println("working: " + destPath.getCanonicalPath());
if (tarEntry.isDirectory()) {
destPath.mkdirs();
} else {
destPath.createNewFile();
FileOutputStream fout = new FileOutputStream(destPath);
tarIn.read(new byte[(int) tarEntry.getSize()]);
fout.close();
}
tarEntry = tarIn.getNextTarEntry();
}
tarIn.close();
}