如何访问下载到内置控制器内存中的文件

发布于 2024-10-31 08:44:29 字数 516 浏览 5 评论 0原文

如何访问我在 Android 设备内存中下载的文件。 意思是,我从设备上的服务器下载了一个文件,但找不到它。 我怎样才能查看它&访问它“例如,如果我不想阅读我下载的 pdf 文件”? 我正在使用 apache FTPClient API: 这是我的代码 -

 public void DownloadServer(View view){
  try{
     filename = inputfld.getText().toString();
     fos=openFileOutput(filename, Context.MODE_WORLD_WRITEABLE);
     client.retrieveFile("/testing/"+filename, fos);
     fos.close();
     client.disconnect(); 
      }catch (IOException e) {
            e.printStackTrace();
        } 
 }

提前非常感谢,

How can I access the file I downloaded in the Internal Memory of my Android device.
Meaning, I downloaded a file from the server on my device but I can't find it.
And how can I view it & access it "if I wan't to read the pdf file I downloaded for example" ??
I'm using the apache FTPClient API:
Here's is my code -

 public void DownloadServer(View view){
  try{
     filename = inputfld.getText().toString();
     fos=openFileOutput(filename, Context.MODE_WORLD_WRITEABLE);
     client.retrieveFile("/testing/"+filename, fos);
     fos.close();
     client.disconnect(); 
      }catch (IOException e) {
            e.printStackTrace();
        } 
 }

Thanks alot in advance,

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

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

发布评论

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

评论(1

极度宠爱 2024-11-07 08:44:29

如何访问我在 Android 设备内存中下载的文件。

由于您使用 openFileOutput() 来编写它,因此您可以使用 openFileInput() 来读取它。

意思是,我从设备上的服务器下载了一个文件,但找不到它。

您将无法看到它,因为您无权查看内部存储上的文件。内部存储的目的是供应用程序存储文件,而不是供用户查看文件。

How can I access the file I downloaded in the Internal Memory of my Android device.

Since you used openFileOutput() to write it, you read it with openFileInput().

Meaning, I downloaded a file from the server on my device but I can't find it.

You won't be able to see it, because you have no rights to view files on internal storage. The point of internal storage is for applications to store files, not for users to view files.

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