我是靠谱客的博主 冷傲高跟鞋,最近开发中收集的这篇文章主要介绍Android内部存储改变读取权限的方法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在开发时,手机先要ROOT,然后在通过代码改变权限。

<span style="color:#330033;">public synchronized static boolean getRoot(String paramString)
	  {
	    Process process = null;
	    DataOutputStream os = null;
	    try
	    {
	      process = Runtime.getRuntime().exec("su");
	      os = new DataOutputStream(process.getOutputStream());
	      os.writeBytes(paramString + "n");
	      os.writeBytes("exitn");
	      os.flush();
	      process.waitFor();
	    } catch (Exception localException)
	    {
	      System.out.println("@@@@root cmd error:"+localException);
	      //localException.printStackTrace();
	      return false;
	    }finally {
	      try {
	        if (os != null) {
	          os.close();
	        }
	        process.destroy();
	      } catch (Exception e) {
	      	System.out.println("###root cmd error:"+e);
	      }
	    }
	    return true;
	  }</span>

引用时需要注意加入权限:

getRoot("chmod -R 777 /data/data/com.xxxxx/databases/wa.db");

以上这篇Android内部存储改变读取权限的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持靠谱客。

最后

以上就是冷傲高跟鞋为你收集整理的Android内部存储改变读取权限的方法的全部内容,希望文章能够帮你解决Android内部存储改变读取权限的方法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(98)

评论列表共有 0 条评论

立即
投稿
返回
顶部