Reputation: 1211
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?
Upvotes: 2
Views: 3364
Reputation: 5497
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.
Upvotes: 5