gpt4 book ai didi

java - FileProvider - 由于 FileNotFoundException :/Download/TempFile. html(没有这样的文件或目录),无法保存文件

转载 作者:行者123 更新时间:2023-11-30 10:39:26 24 4
gpt4 key购买 nike

Android N 似乎需要 FileProvider,所以我正在尝试实现 FileProvider 以将文件从网络保存到本地临时位置,然后我需要读取此临时文件。

我这样做是为了设置 FileProvider:

list .xml:

</application>
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
</application>

然后我有一个provider_paths.xml文件在我的res/xml文件夹,用这个:

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<files-path name="Download" path="Download"/>
</paths>

最后,这是我必须创建临时文件的 java 代码:

try {

final File imagePath = new File(getContext().getFilesDir(), "Download");
final File newFile = new File(imagePath, filename + "." + filePrefix);

final Uri contentUri = FileProvider.getUriForFile(getContext(), getContext().getApplicationContext().getPackageName() + ".provider", newFile);

final File tempFile = new File(contentUri.getPath());

tempFile.getParentFile().mkdirs();
final FileWriter writer = new FileWriter(tempFile);
writer.flush();
writer.close();
return tempFile;
} catch (IOException e) {
e.printStackTrace();
return null;
}

final FileWriter writer = new FileWriter(tempFile);行抛出异常 java.io.FileNotFoundException: /Download/TempFile.html (No such file or directory)

对我做错了什么有什么建议吗?谢谢!

更新/编辑:

当前保存文件的方法将文件放在这里: /storage/emulated/0/Download/TempFile.html

这很好,直到我尝试使用 Intent 来使用它,如下所示:

final Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), fileType.getMimeType());
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
startActivity(intent);

然后抛出这个异常:

android.os.FileUriExposedException:file:///storage/emulated/0/Download/TempFile.html exposed beyond app through Intent.getData()

最佳答案

Seems like FileProvider is now required for Android N

它将被广泛使用,但仅用于向其他应用程序提供内容。您的需求似乎不包括向其他应用提供内容。

I'm trying to implement FileProvider to save a file from the network into a local temp location

您的问题中没有与网络有关的代码。

Any suggestions on what I'm doing wrong?

Uri 上调用 getPath() 通常是无用的。充其量,如果 Uri 的方案是 file 可能会有用。 FileProvider 专门设计用于为您提供具有文件 方案的Uri,而是内容 方案。该 Uri 的路径不会直接表示设备上的文件,不会超过 /questions/39296553/fileprovider-cant-save-file-due-to-filenotfoundexception-download-tempfile (此网页的 URL 路径)表示计算机上文件的路径。

除此之外,您不需要 FileProvider 来创建临时文件,您确实需要 FileProvider 通过网络下载内容。


更新(基于问题更新)

首先,将 Intent 逻辑中的 Uri.fromFile(file) 替换为 FileProvider.getUriForFile(file)

其次,如果您确实将文件存储在 /storage/emulated/0/Download/TempFile.html 中,则需要在您的文件中使用 external-path FileProvider 配置,而不是 files-path。如果您将下载的文件存储在 getFilesDir() 中,则 files-path 就是。您的 /storage/emulated/0/Download/TempFile.html 路径似乎不在 Environment.getExternalStorageDirectory() 中。

关于java - FileProvider - 由于 FileNotFoundException :/Download/TempFile. html(没有这样的文件或目录),无法保存文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39296553/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com