作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何读取 zip 存档内的二进制文件(获取字节数组)?我正在使用TrueZip 。
我的例子:
import de.schlichtherle.truezip.file.TFile;
import java.util.HashMap;
public class Archive {
private final TFile archive;
// String in HashMap represents filename ( eg. MyTextFile.txt )
private final HashMap<String, TFile> entries = new HashMap<>();
public Archive( String path ) {
this.archive = new TFile(path);
this.listEntries( archive.getAbsolutePath() );
}
// lists all files
private void listEntries( String pathToZipFile ) {
TFile archive = new TFile( pathToZipFile );
for ( TFile listFile : archive.listFiles() ) {
if ( listFile.isDirectory() ) {
listEntries(listFile.getAbsolutePath());
} else {
entries.put(listFile.getName(), listFile);
}
}
}
public byte[] getBytes( String key ) {
TFile file = entries.get(key);
// ...
}
我正在寻找类似的东西,但对于 TFile/TPath:
Files.readAllBytes( file.toPath() );
最佳答案
有一个 TPath 类 ( https://truezip.java.net/truezip-path/ ) 和一个用于 NIO.2 文件系统的适配器,所以它非常简单:
Path path = new TPath(new URI("http://acme.com/download/everything.zip/README.TXT"));
byte[] bytes= Files.readAllBytes(path);
关于java - 如何在 Java 中使用 TrueZip API(不解压)获取 TFile 的字节,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42589546/
我是一名优秀的程序员,十分优秀!