Compressing & Decompressing 7z file in java

后端 未结 3 1197
清酒与你
清酒与你 2021-01-01 16:12

I want to compress a file into zip, rar and 7z format using java code. Also I want to decompress these files at a specified location. Can anyone please tell me how to compr

相关标签:
3条回答
  • 2021-01-01 16:25

    SevenZipBinding is great for decompression, it even detects format automaticaly. Problem is it can't compress. You can create zip archives using ZIP4J. It however offers only plain zip. LZMA apparently can compress single files into 7z archives, but I haven't tried it yet.

    0 讨论(0)
  • 2021-01-01 16:35

    You can also write a batch script or just inline command execution which you call from java to extract and compress. Note that this option is for windows platforms only and required a few admin skills. 7zip provides an exe file to facilitate this. I have used this for one of my utility and worked perfectly. If you are interested I can send u the code.

    0 讨论(0)
  • 2021-01-01 16:37

    I have used : sevenzipjbinding.jar sevenzipjbinding-Allplatforms.jar

    I am now able to decompress files using these jars.

    Try this link for decompression: http://sourceforge.net/projects/sevenzipjbind/forums/forum/757964/topic/3844899

    0 讨论(0)
提交回复
热议问题