我有一个7zip
存档,其中包含分成不同目录的几百个文件。目标是从FTP服务器下载它,然后在手机上提取它。
我的问题是7zip
SDK不包含很多内容。我正在寻找有关7z文件解压缩的示例,教程和片段。
(通过Intent
解压缩只是次要选项)
答案 0 :(得分:2)
转到here:
LZMA SDK仅提供用于编码/解码原始数据的编码器和解码器,但7z存档是用于存储多个文件的复杂格式。
答案 1 :(得分:1)
我发现这个page提供了一种像魅力一样的替代品。您只需添加compile 'org.apache.commons:commons-compress:1.8'
到您的构建gradle脚本并使用您想要的功能。对于这个问题,我做了以下几点:
AssetManager am = getAssets();
InputStream inputStream = null;
try {
inputStream = am.open("a7ZipedFile.7z");
File file1 = createFileFromInputStream(inputStream);
} catch (IOException e) {
e.printStackTrace();
}
SevenZFile sevenZFile = null;
try{
File f = new File(this.getFilesDir(), "a7ZipedFile.7z");
OutputStream outputStream = new FileOutputStream(f);
byte buffer[] = new byte[1024];
int length = 0;
while((length=inputStream.read(buffer)) > 0) {
outputStream.write(buffer,0,length);
}
try {
sevenZFile = new SevenZFile(f);
SevenZArchiveEntry entry = sevenZFile.getNextEntry();
while (entry != null) {
System.out.println(entry.getName());
FileOutputStream out = openFileOutput(entry.getName(), Context.MODE_PRIVATE);
byte[] content = new byte[(int) entry.getSize()];
sevenZFile.read(content, 0, content.length);
out.write(content);
out.close();
entry = sevenZFile.getNextEntry();
}
sevenZFile.close();
outputStream.close();
inputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}catch (IOException e) {
//Logging exception
e.printStackTrace();
}
对于导入的库,唯一的缺点是大约200k。除此之外,它非常容易使用。