Possible Duplicate:
RAR archives with java
In a java project I am working on I need to extract a .rar file that is password protected. I do know the password. Does anybody know of a free API that does this?
Possible Duplicate:
RAR archives with java
In a java project I am working on I need to extract a .rar file that is password protected. I do know the password. Does anybody know of a free API that does this?
You can downlaod use WinZipAES.
It has classes such as de.idyl.winzipaes.AesZipFileEncrypter
and de.idyl.winzipaes.AesZipFileDecrypter
, which might be useful for you.
This small utility program uses java.util.zip
package internally.