首页 > 系统 > Android > 正文

android打开rar压缩文件的事例演示

2020-02-21 17:35:20
字体:
来源:转载
供稿:网友

有些文件是以压缩包的形式存在的,在打开之前需要对其进行解压,虽然大多数手机系统都有自己的解压功能,但当压缩包大于4GB时,使用自己的解压功能会导致文件损坏,那么android打开rar压缩文件的事例演示大家都了解吗?下面就让武林技术频道小编带你一起来了解一下吧!

复制代码 代码如下:

private void open(String fileString) {
Intent intent = new Intent();
intent.setClassName("com.rarlab.rar", "com.rarlab.rar.MainActivity");
File file = new File(fileString);
Uri data = Uri.fromFile(file);
intent.setData(data);
try {
startActivity(intent);
} catch (ActivityNotFoundException e) {
try {
Uri uri = Uri.parse("market://search?q=" + "rar");
Intent it = new Intent(Intent.ACTION_VIEW, uri);
startActivity(it);
} catch (ActivityNotFoundException e2) {
Log.i(TAG, "market no found");
}
}
}

通过武林技术频道小编介绍的android打开rar压缩文件的事例演示,相信大家都有了一定的了解,如需了解更多的相关资讯,请继续关注武林技术频道吧!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表