user1728310
user1728310

Reputation: 687

Compressing & Decompressing 7z file in java

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 compress and decompress files using 7-zip in java?

Upvotes: 18

Views: 29755

Answers (3)

Stabby
Stabby

Reputation: 109

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.

Upvotes: 3

Thakhani Tharage
Thakhani Tharage

Reputation: 1298

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.

Upvotes: 0

user1728310
user1728310

Reputation: 687

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

Upvotes: 14

Related Questions