作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用jtar-1.1
尝试从tar文件中提取文件,我使用以下代码尝试提取文件
String tarFile = "c:/test/test.tar";
String destFolder = "c:/test/myfiles";
// Create a TarInputStream
TarInputStream tis = new TarInputStream(new BufferedInputStream(new FileInputStream(tarFile)));
while (( entry = tis.getNextEntry() ) != null) {
System.out.println( "Extracting: " + entry.getName() );
int count;
byte data[] = new byte[BUFFER];
if (entry.isDirectory()) {
new File( destFolder + "/" + entry.getName() ).mkdirs();
continue;
} else {
int di = entry.getName().lastIndexOf( '/' );
if (di != -1) {
new File( destFolder + "/" + entry.getName().substring( 0, di ) ).mkdirs();
}
}
FileOutputStream fos = new FileOutputStream( destFolder + "/" + entry.getName() );
BufferedOutputStream dest = new BufferedOutputStream( fos );
while (( count = tis.read( data ) ) != -1) {
dest.write( data, 0, count );
}
dest.flush();
dest.close();
}
}
编辑:
我已经编辑了上面的代码来检查entry
是否是directory
,完成此操作后,它就消除了FileNotFound
错误。 ..上面的代码现在可以工作了
最佳答案
我认为您需要在打开 FileOutputStream 之前创建路径。
类似主题Here
关于java - JTar 从 .tar 文件中提取文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11636403/
Windows - 我正在尝试使用 JTar 库创建一个新的 Tar 文件,其中包含以下内容... MyTarFile.tar--| |--MyFolder--|
我正在使用jtar-1.1尝试从tar文件中提取文件,我使用以下代码尝试提取文件 String tarFile = "c:/test/test.tar"; String destFolder = "c
我是一名优秀的程序员,十分优秀!