Skip to content Skip to sidebar Skip to footer

How To Compress Files In Rar Format In Android?

In my project I have a requirement to compress my files using only the RAR format. How can I compress a File to RAR format in Android?

Solution 1:

RAR is a proprietary format, with a closed algorithm, so you will probably not find any open source Java API for it.

But Zip will do what you want and is widely available and comes with Api in Java.

Post a Comment for "How To Compress Files In Rar Format In Android?"