2

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

我这样做是为了设置 FileProvider:

清单.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()

4

1 回答 1

1

似乎 Android N 现在需要 FileProvider

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

我正在尝试实现 FileProvider 以将文件从网络保存到本地临时位置

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

关于我做错了什么有什么建议吗?

调用getPath()aUri通常是没有用的。充其量,如果 is 的方案可能会很有UrifileFileProvider专门设计的不是给你一个Uri方案file,而是一个content方案。它的路径Uri不会直接代表设备上的文件,/questions/39296553/fileprovider-cant-save-file-due-to-filenotfoundexception-download-tempfile就像(此网页的 URL 的路径)代表计算机上文件的路径一样。

除此之外,您不需要 aFileProvider来制作临时文件,并且您确实需要 aFileProvider通过网络下载内容。


更新(基于问题更新)

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

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

于 2016-09-02T16:13:17.067 回答