0

Windows プラットフォームで Android のファイル一覧を表示したい。私は方法を使用しました:

 private void browseToRoot() {
                browseTo(new File("C:\\");
    }

 private void browseTo(final File aDirectory){
              if (aDirectory.isDirectory()){
                 this.currentDirectory = aDirectory;
                     fill(aDirectory.listFiles());
              }else{
                     OnClickListener okButtonListener = new OnClickListener(){
                            // @Override
                            public void onClick(DialogInterface arg0, int arg1) {
                                   // Lets start an intent to View the file, that was clicked...
                                Intent myIntent = new Intent(android.content.Intent.ACTION_VIEW,
                                        Uri.parse("file://" + aDirectory.getAbsolutePath())); 
                                startActivity(myIntent);
                             }
                     };
                     OnClickListener cancelButtonListener = new OnClickListener(){
                             // @Override
                             public void onClick(DialogInterface arg0, int arg1) {
                                    // Do nothing
                            }
                     };
                     new AlertDialog.Builder(this)
                     .setTitle("Question")
                     .setMessage("Do you want to open that file?"+ aDirectory.getName())
                     .setPositiveButton("OK", okButtonListener)
                     .setNegativeButton("Cancel", cancelButtonListener)
                     .show();

             }
      }

しかし、うまくいきません。"BrowseTo(new File("/"))" に変更すると、機能します。

手伝ってくれてありがとう

4

2 に答える 2

1

AndroidはLinuxベースのOSです。

ファイルへのLinuxスタイルのパスを使用する必要があります

于 2011-06-21T09:02:09.743 に答える
0

Environment.getRootDirectory()「/」の代わりに試してください

ありがとうディーパック

于 2011-06-21T09:11:53.523 に答える