Decompress Rar file in Android

前端 未结 2 1523
庸人自扰
庸人自扰 2021-02-10 07:02

I want to learn how to decompress a .rar file in android. Zip files can be easily decompressed using ZipStream. Is there any similar way for rar files.

2条回答
  •  无人及你
    2021-02-10 07:52

    RAR isn't very commonly used (except in certain niches), so you won't find support for it built into the Android libraries. Probably the easiest thing to do is to get a Java library that handles RAR files, as covered in this question:

    RAR archives with java

提交回复
热议问题