首先要提到的问题here的答案无济于事。
源代码如下:
Intent intent = new Intent("com.mycompany.action.PICK_FILE");
String authority = "com.mycompany.fileprovider";
File file = Environment.getExternalStorageDirectory();
intent.setData(FileProvider.getUriForFile(this, authority, file));
FileProvider.getUriForFile
引发异常,这是堆栈跟踪:
java.lang.StringIndexOutOfBoundsException: length=15; index=16
at java.lang.String.indexAndLength(String.java:500)
at java.lang.String.substring(String.java:1313)
at android.support.v4.content.FileProvider$SimplePathStrategy.getUriForFile(FileProvider.java:687)
at android.support.v4.content.FileProvider.getUriForFile(FileProvider.java:377)
在AndroidManifest.xml
标签内的application
中,我添加了以下内容:
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.mycompany.fileprovider"
android:exported="false"
android:grantUriPermissions="true"
>
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths"
/>
</provider>
file_paths.xml
的内容如下:
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="input_files" path="." />
<external-path name="output_files" path="MyAppName/" />
</paths>
在此上下文中未使用 output_files
路径。
我已通过FileProvider.SimplePathStrategy.getUriForFile()
运行调试器。相关代码段如下(第683-688行):
final String rootPath = mostSpecific.getValue().getPath();
if (rootPath.endsWith("/")) {
path = path.substring(rootPath.length());
} else {
path = path.substring(rootPath.length() + 1);
}
rootPath
被评估为/storage/sdcard
,它也是path
的确切值,因此也就不会抛出异常。
我在做什么错了?
更新:
如下面的建议,传递的java.io.File
不应是目录。 Docs含糊不清,永远不要明确地说出来。解决方法是“手动”创建uri。因此
intent.setData(FileProvider.getUriForFile(this, authority, file));
应替换为:
intent.setData(Uri.parse("content://" + file.getAbsolutePath()));