如何在windows平台上显示android文件浏览器

发布于 2024-11-16 05:08:35 字数 1728 浏览 5 评论 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("/"))”,它就可以工作。

谢谢你的帮助

I want to show file list in android in windows platform.
I used the method :

 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();

             }
      }

But It doesn't work . If I change to "BrowseTo(new File("/"))" ,it work.

thanks for help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

半岛未凉 2024-11-23 05:08:35

Android 是一个基于 Linux 的操作系统。

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

Android is a Linux-based OS.

You should use Linux-style paths to files

醉南桥 2024-11-23 05:08:35

尝试使用 Environment.getRootDirectory() 而不是“/”

谢谢
迪帕克

Try with Environment.getRootDirectory() instead of "/"

Thanks
Deepak

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文