-1

我正在尝试制作一个文件浏览器(特别是我开始更改此内容:http ://android-er.blogspot.com.es/2010/01/implement-simple-file-explorer-in.html )。

我的问题是:如何访问并查看目录“/”中的文件?我发现那里正在寻找著名的:Runtime.getRuntime().exec("su");但我只做那个超级用户授予管理员权限并停止工作。

我按照这里的步骤来root模拟器:如何在Android模拟器上获得root访问权限?. 反正我的手机已经root了,不能用。

这是代码。该应用程序在超级用户的列表中,但总是无法读取消息文件夹!

public class AndroidExplorer extends ListActivity {

private List<String> item = null;
private List<String> path = null;
private String root="/";
private TextView myPath;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main); 

    List<String> cmds = new ArrayList<String>();
    cmds.add("mount -o rw,remount /system");
    try {
        doCmds(cmds);
    } catch (Exception e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    myPath = (TextView)findViewById(R.id.path);
    getDir(root);
}

public void doCmds(List<String> cmds) throws Exception {
    Process process = Runtime.getRuntime().exec("su");
    DataOutputStream os = new DataOutputStream(process.getOutputStream());

    for (String tmpCmd : cmds) {
            os.writeBytes(tmpCmd+"\n");
    }

    os.writeBytes("exit\n");
    os.flush();
    os.close();

    process.waitFor();
} 

private void getDir(String dirPath)
{
 myPath.setText("Location: " + dirPath);
 item = new ArrayList<String>();
 path = new ArrayList<String>();
 File f = new File(dirPath);
 File[] files = f.listFiles();

 if(!dirPath.equals(root))
 {
  item.add(root);
  path.add(root);
  item.add("../");
  path.add(f.getParent());
 }
 for(int i=0; i < files.length; i++)
 {
   File file = files[i];
   path.add(file.getPath());
   if(file.isDirectory())
    item.add(file.getName() + "/");
   else
    item.add(file.getName());
 }
 ArrayAdapter<String> fileList =
  new ArrayAdapter<String>(this, R.layout.row, item);
 setListAdapter(fileList);
}

 @Override
 protected void onListItemClick(ListView l, View v, int position, long id) {
  File file = new File(path.get(position));
  if (file.isDirectory())
  {
   if(file.canRead())
    getDir(path.get(position));
   else
   {
    new AlertDialog.Builder(this)
    .setIcon(R.drawable.ic_launcher)
    .setTitle("[" + file.getName() + "] folder can't be read!")
    .setPositiveButton("OK", 
      new DialogInterface.OnClickListener() {
       @Override
       public void onClick(DialogInterface dialog, int which) {
        // TODO Auto-generated method stub
       }
      }).show();
   }
  }
  else
  {
   new AlertDialog.Builder(this)
    .setIcon(R.drawable.ic_launcher)
    .setTitle("[" + file.getName() + "]")
    .setPositiveButton("OK", 
      new DialogInterface.OnClickListener() {
       @Override
       public void onClick(DialogInterface dialog, int which) {
        // TODO Auto-generated method stub
       }
      }).show();
  }
 }

}

4

1 回答 1

0

反正我的手机已经root了,不能用。

首先,您需要一部有效的根电话。生根方法取决于您的手机型号,因此您需要谷歌并弄清楚。

成功植根手机后,您将拥有超级用户权限,并且可以执行su命令。

您可以像这样检查您的手机是否正确植根(在 Windows 命令提示符下):

> adb shell
$ su

您应该能够看到根文件夹中的文件,例如:

$ cd /
$ ls -al

编辑

代替:

Runtime r = Runtime.getRuntime();
process = r.exec("su");

具有以下内容:

List<String> cmds = new List<String>();
cmds.add("mount -o rw,remount /system");
doCmds(cmds);

并添加以下功能:

public void doCmds(List<String> cmds) throws Exception {
    Process process = Runtime.getRuntime().exec("su");
    DataOutputStream os = new DataOutputStream(process.getOutputStream());

    for (String tmpCmd : cmds) {
            os.writeBytes(tmpCmd+"\n");
    }

    os.writeBytes("exit\n");
    os.flush();
    os.close();

    process.waitFor();
}  
于 2012-07-03T13:26:16.183 回答