Android - 打开名称中包含空白字符的文件时出现 FileNotFoundException

发布于 2024-10-01 18:29:09 字数 222 浏览 5 评论 0原文

我正在构建一个 Android 应用程序并遇到以下问题。当我想使用 FileInputStream 从 sdcard 打开文件并且文件名包含空白字符时,我会收到 FileNotFoundException。如果没有空白字符,一切正常。因此,如果我要打开例如:“My file.ext”,则会引发异常,如果文件名是“Myfile.ext”,则一切正常。

任何有关如何解决该问题的线索将不胜感激。

问候

I am building an android application and have the following problem. When I want to open a file from the sdcard using FileInputStream and if the file name contains a blank character, I get the FileNotFoundException. If there are no blank characters, everything works fine. So, if I am to open for example: "My file.ext" it raises an exception, and if the file name is "Myfile.ext" everything is fine.

Any clues on how to resolve that will be much appreciated.

Regards

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

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

发布评论

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

评论(2

叹梦 2024-10-08 18:29:09

您将需要使用转义字符来指定文件名中是否有空格。我相信它是一个“\”...

所以它会像这样“my\ textfile.txt”

You will need to use an escape character to specific that there is a blank in the file name. I believe it is a '\'...

So it would be like this "my\ textfile.txt"

握住你手 2024-10-08 18:29:09

您可以尝试让 android 解析某个文件并打开它

 File file = new File(Uri.parse(path+"file name.txt"));
 FileInputStream inputStream = new FileInputStream(file);

Uri 应该正确解析您的文件名。

You could try to let android parse a certain file and open it

 File file = new File(Uri.parse(path+"file name.txt"));
 FileInputStream inputStream = new FileInputStream(file);

Uri should parse your filenames correctly.

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