我已更新我的项目以实施提供商。整个实现看似正确,但我在StringIndexOutOfBoundsException
类中收到FileProvider
异常。
在我的情况下,创建一个Intent,用户将在其中选择从他的图书馆获取图像或拍摄新照片。
这是创建我的意图之一,在列表中包含,以创建选择器。
File file = getTempFile(context);
if (file != null) {
Intent takePhotoIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE,
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
takePhotoIntent.putExtra("return-data", true);
takePhotoIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
takePhotoIntent.putExtra(MediaStore.EXTRA_OUTPUT,
FileProvider.getUriForFile(context, // line 43
BuildConfig.APPLICATION_ID.concat(".fileprovider"),
file));
intentList = addIntentsToList(context, intentList, takePhotoIntent);
}
getTempFile
方法:
private static File getTempFile(Context context) {
File imageFile = new File(context.getExternalCacheDir(), TEMP_IMAGE_NAME);
if (imageFile.getParentFile().mkdirs()) {
return imageFile;
} else {
return null;
}
}
引发的异常:
java.lang.StringIndexOutOfBoundsException: length=86; index=87
at java.lang.String.substring(String.java:1939)
at android.support.v4.content.FileProvider$SimplePathStrategy.getUriForFile(FileProvider.java:728)
at android.support.v4.content.FileProvider.getUriForFile(FileProvider.java:404)
at com.project.helper.ImagePicker.getPickImageIntent(ImagePicker.java:43)
我如何处理这种情况?也许这是这个版本的提供商的错误?要了解有关我的项目的更多信息:
清单文件:
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.project.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文件:
<?xml version="1.0" encoding="utf-8"?>
<paths>
<external-path name="images" path="Android/data/com.project/cache/tempImage" />
</paths>
buildToolsVersion '27.0.2'
答案 0 :(得分:2)
替换:
<external-path name="images" path="Android/data/com.project/cache/tempImage" />
使用:
<external-cache-path name="images" path="." />
首先,这将更可靠,因为您当前的实现会假设getExternalCacheDir()
指向的位置。其次,path
需要指向一个目录,而不是一个文件,而我的猜测是,这就是事情的发展方向。
答案 1 :(得分:1)
您必须以这种方式更改xml:
<external-path name="images" path="." />