FileProvider.getUriForFile 抛出 StringIndexOutOfBoundsException
FileProvider.getUriForFile is throwing StringIndexOutOfBoundsException
首先要提到的是,问题 的答案没有帮助。
源代码如下所示:
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)
在 application
标签内的 AndroidManifest.xml
我添加了以下内容:
<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 'manually'。于是
intent.setData(FileProvider.getUriForFile(this, authority, file));
应替换为:
intent.setData(Uri.parse("content://" + file.getAbsolutePath()));
getUriForFile 的第三个参数,应该是你的文件路径和文件名。 Here is an docs, read it.
首先要提到的是,问题
源代码如下所示:
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)
在 application
标签内的 AndroidManifest.xml
我添加了以下内容:
<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 'manually'。于是
intent.setData(FileProvider.getUriForFile(this, authority, file));
应替换为:
intent.setData(Uri.parse("content://" + file.getAbsolutePath()));
getUriForFile 的第三个参数,应该是你的文件路径和文件名。 Here is an docs, read it.