在7.0下载word文件或图片等文件会遇到android.os.FileUriExposedException

在7.0下载word文件或图片等文件会遇到android.os.FileUriExposedException:

需要把Uri uri=Uri.fromfile做修改

Uri uri;

// if (Build.VERSION.SDK_INT >= 23) {
uri = FileProvider.getUriForFile(context,
getPackageName() + ".fileprovider", new File(fileName));

AndroidManifest.xml文件里

                 android:name="android.support.v4.content.FileProvider"
            android:authorities="包名.fileprovider"
            android:exported="false"
            android:grantUriPermissions="true" >
                            android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/file_paths" />

       

xml资源文件夹内file_paths:



            name="images"
        path="路径名称/" />

打开相关文件软件查看下载的内容:

Intent intent = new Intent();
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);// 这里加入flag
// 设置intent的Action属性
intent.setAction(Intent.ACTION_VIEW);
intent.putExtra(MediaStore.EXTRA_OUTPUT, uri);
// 获取文件file的MIME类型
// 设置intent的data和Type属性。
intent.setDataAndType(/* uri */uri,
new GetMIMEType().getMIMEType(new File(fileName)));
// 跳转

startActivity(intent);

ok,搞定

你可能感兴趣的:(android)