Android编程中中root权限的获取
前几天在做一个文件管理器,在打开非sdcard下的目录文件时碰到了空指针的错误,色友说要获取root权限才能访问其他需root权限的文件夹,于是用了下面的方法获取权限,
public final String rootPowerCommand = "chmod 777 /dev/block/mmcblk0";// 授权root权限命令
/**
* 授权root用户权限
*
* @param command
* */
public boolean rootCommand(String command) {
Process process = null;
DataOutputStream dos = null;
try {
process = Runtime.getRuntime().exec("su");
dos = new DataOutputStream(process.getOutputStream());
dos.writeBytes(command+"\n");
dos.writeBytes("exit\n");
dos.flush();
process.waitFor();
} catch (Exception e) {
return false;
} finally {
try {
if (dos != null) {
dos.close();
}
process.destroy();
} catch (Exception e) {
}
}
return true;
}
虽然调用成功,但是还是空指针错误,如下:
<p>@Overridepublic void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.list_view);
// loadApps();
rootCommand(rootPowerCommand);//调用获取root权限
initTool();
initFileList();
}</p> <p>@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
@SuppressWarnings("unchecked")
Map<String, Object> map = (Map<String, Object>) this.getListAdapter()
.getItem(position);
FileBean fileBean = (FileBean) map.get("icon");
Log.v("--------path---------", fileBean.getPath());
File file = new File(fileBean.getPath());//此处路劲fileBean.getPath()经调试得到是存在的目录,如我点击root文件夹得到/root
if (!file.isDirectory()) {
fileControl.openFile(file);// 打开文件
} else {
fileDirControl.openDir(file);// 打开文件夹。。。。。。。。。。。。。。。。接下面
}
}</p>
/*
打开目录
@param file
/
public void openDir(File file) {
fileBroswer.current_path = file.getAbsolutePath();
fileBroswer.currentDir.setText(file.getAbsolutePath());
File[] files = file.listFiles();//得到的files竟然是空的,就是说虽然目录文件存在,但是你不能访问它,
</span> data = fileBroswer.getData(files);//由此也就照成了空指针错误,为什么么?求解释啊。。。。。。
MyAdapter myAdapter = new MyAdapter(context, data);
fileBroswer.setListAdapter(myAdapter);
}