欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

android打開rar壓縮文件

 更新時間:2014年03月07日 09:22:47   投稿:zxhpj  
這篇文章主要介紹了android打開rar壓縮文件示例,調(diào)用RAR for android 打開壓縮文件,需要的朋友可以參考下

復制代碼 代碼如下:

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");
  }
 }
}

相關(guān)文章

最新評論