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 的操作系统。

您应该使用 Linux 风格的文件路径

于 2011-06-21T09:02:09.743 回答
0

尝试用Environment.getRootDirectory()“/”代替

谢谢迪帕克

于 2011-06-21T09:11:53.523 回答