这些 FileProvider 中还有一个失去了灵魂……我已经研究这个问题超过一天了,看来我错过了一些大事。任何帮助,将不胜感激!
我正在尝试使用 FileProvider 发送带有附件的电子邮件。
我的 AndroidManifest.xml 的一部分:
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="todolistj.todolist.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
文件路径.xml:
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-files-path name="lists_to_send" path="export/"/>
</paths>
创建附件:
String content = "hello world";
File file;
FileOutputStream outputStream;
try {
File dir = context.getExternalFilesDir("export");
if(!dir.exists()) dir.mkdir();
file = new File(dir, "MyCache");
if (file.exists ()) file.delete ();
outputStream = new FileOutputStream(file);
outputStream.write(content.getBytes());
outputStream.close();
return file.getAbsolutePath();
} catch (IOException e) {
e.printStackTrace();
}
以及 Uri 的创作:
File readF = new File(fullFileName);
Uri uri = FileProvider.getUriForFile(this, "todolistj.todolist.fileprovider", readF);
其中fullFileName
是在片段中返回的用于文件创建的值。
在 Uri 创建行我得到异常:
...
Caused by: java.lang.IllegalArgumentException: Failed to find configured
root that contains /storage/emulated/0/Android/data/todolistj.todolist/files/export/MyCache
...
正如此处的文档(https://developer.android.com/reference/android/support/v4/content/FileProvider.html)所述:
< external-files-path name="name" path="path" /> 代表应用外部存储区域根目录中的文件。该子目录的根路径与 Context#getExternalFilesDir(String) Context.getExternalFilesDir(null) 返回的值相同。
所以我的 xml 中的 external-files-path 似乎与context.getExternalFilesDir
我使用的方法相匹配。这两个地方我都有“导出”文件夹。当局似乎匹配......我的问题可能是什么。我找不到找到并打印 FileProvider 的“已配置根”的方法