-1

私はファイル ブラウザを作成しようとしています (具体的には、これを変更し始めました: http://android-er.blogspot.com.es/2010/01/implement-simple-file-explorer-in.html )。

私の質問は次のとおりです。ディレクトリ「/」内のファイルにアクセスして表示するにはどうすればよいですか? 有名な人を探していることがわかりました:Runtime.getRuntime().exec("su");しかし、私はスーパーユーザーが管理者に権限を与えて作業を停止するだけです。

エミュレーターをルート化するには、次の手順に従いました: Android エミュレーターでルート アクセスを取得するには? . とにかく、私の電話はルート化されており、機能しません。

これがコードです。アプリケーションはスーパーユーザーのリストにありますが、常にメッセージ フォルダを読み取ることができません!

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 に答える