有人可以建議(舉例)任何適當和可以理解的方式如何提取基於InputStream的.7z擴展名的文件或文件。我已經檢查了Java API的XZ,但無法成功。等待任何建議。在java中解壓縮帶.7z擴展名的文件
3
A
回答
4
此代碼可能會對您有所幫助。
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.util.Arrays;
import net.sf.sevenzipjbinding.ExtractOperationResult;
import net.sf.sevenzipjbinding.ISequentialOutStream;
import net.sf.sevenzipjbinding.ISevenZipInArchive;
import net.sf.sevenzipjbinding.SevenZip;
import net.sf.sevenzipjbinding.SevenZipException;
import net.sf.sevenzipjbinding.impl.RandomAccessFileInStream;
import net.sf.sevenzipjbinding.simple.ISimpleInArchive;
import net.sf.sevenzipjbinding.simple.ISimpleInArchiveItem;
public class unzip {
public static void main(String[] args) {
RandomAccessFile randomAccessFile = null;
ISevenZipInArchive inArchive = null;
try {
randomAccessFile = new RandomAccessFile("oclHashcat-plus-0.14.7z", "r");
inArchive = SevenZip.openInArchive(null, // autodetect archive type
new RandomAccessFileInStream(randomAccessFile));
// Getting simple interface of the archive inArchive
ISimpleInArchive simpleInArchive = inArchive.getSimpleInterface();
System.out.println(" Hash | Size | Filename");
System.out.println("----------+------------+---------");
for (final ISimpleInArchiveItem item : simpleInArchive.getArchiveItems()) {
final int[] hash = new int[] { 0 };
if (!item.isFolder()) {
ExtractOperationResult result;
final long[] sizeArray = new long[1];
result = item.extractSlow(new ISequentialOutStream() {
public int write(byte[] data) throws SevenZipException {
//Write to file
FileOutputStream fos;
try {
File file = new File(item.getPath());
file.getParentFile().mkdirs();
fos = new FileOutputStream(file);
fos.write(data);
fos.close();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
hash[0] ^= Arrays.hashCode(data); // Consume data
sizeArray[0] += data.length;
return data.length; // Return amount of consumed data
}
});
if (result == ExtractOperationResult.OK) {
System.out.println(String.format("%9X | %10s | %s", //
hash[0], sizeArray[0], item.getPath()));
} else {
System.err.println("Error extracting item: " + result);
}
}
}
} catch (Exception e) {
System.err.println("Error occurs: " + e);
System.exit(1);
} finally {
if (inArchive != null) {
try {
inArchive.close();
} catch (SevenZipException e) {
System.err.println("Error closing archive: " + e);
}
}
if (randomAccessFile != null) {
try {
randomAccessFile.close();
} catch (IOException e) {
System.err.println("Error closing file: " + e);
}
}
}
}
}
+0
我明白了,但需要更多的建議 - 如何將這個罐子添加到maven項目? mvnrepo不提供任何依賴 – user1421496
+0
謝謝,黑暗騎士。回答我的第二個問題 - http://stackoverflow.com/questions/364114/can-i-add-jars-to-maven-2-build-classpath-without-installing-them/7623805#7623805,最有用的是python腳本 – user1421496
相關問題
- 1. 在java中壓縮和解壓縮7z文件
- 2. UWP解壓縮7Z文件
- 3. 如何解壓/ iOS中提取的7z壓縮文件
- 4. 解壓在Azure的自動化.7z壓縮文件
- 5. iOS iphone解壓縮跨(多卷).7z或.zip壓縮文件
- 6. gzip壓縮中的Node.js文件擴展
- 7. 如何在elixir/erlang中解壓縮.7z文件
- 8. 在PowerShell中使用7z解壓縮文件
- 9. 用java代碼解壓縮一個帶有.file擴展名的包
- 10. 如何解壓壓縮文件到一個文本擴展
- 11. 如何使用7Z SDK壓縮和解壓文件
- 12. 在C#中通過Winzip解壓縮文件及其cmd擴展
- 13. Spark - 讀取沒有文件擴展名的壓縮文件
- 14. 解密文件不帶擴展名
- 15. 在yii中壓縮/解壓縮文件
- 16. 解壓縮saz文件java
- 17. java解壓縮文件
- 18. 如何解壓縮帶有rcc擴展的已編譯的qt資源文件?
- 19. 7Z壓縮和解目錄相對
- 20. PowerShell壓縮 - 歸檔文件擴展
- 21. 使用IIS6.0對不帶擴展名的文件使用IIS6.0進行Gzip壓縮
- 22. 7z格式的壓縮
- 23. 使用PHP解壓縮/壓縮zip文件而不依靠任何擴展
- 24. 目標c:需要SDK來解壓縮.7z文件
- 25. 如何解壓縮帶.ccz擴展名的.astc文件?我如何查看.ita文件?
- 26. 在cmd中解壓縮文件時出錯(在Windows中使用7z)
- 27. 使用Pig來處理沒有擴展名的壓縮文件
- 28. 7z擴展爲PHP?
- 29. php zipArchive只解壓縮某些擴展
- 30. Firefox擴展:下載並解壓縮ZIP
拿這個鏈接看看: http://stackoverflow.com/questions/12781207/compressing-decompressing-7z-file-in-java – AlexR
你能使用調用7zip的自身的批處理文件? – Brian