Ingrid Cooper
Ingrid Cooper

Reputation: 1211

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?

Upvotes: 2

Views: 3364

Answers (1)

kaderud
kaderud

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

Related Questions