android文件分享在android7.0以上版本报错的解决方案

android文件分享在android7.0以上版本报错的解决方案,第1张

概述最近在使用蓝牙进行文件分享时,出现了一个奇怪的问题。同样的代码在android5.1上可以顺利运行,但是在android7.0上就运行失败。出现如下的错误:Causedby:android.os.FileUriExposedException:file:///storage/emulated/0/bluetooth/data.txtexposedbeyondappthroughClipData

最近在使用蓝牙进行文件分享时,出现了一个奇怪的问题。同样的代码在androID5.1上可以顺利运行,但是在Android7.0上就运行失败。出现如下的错误:

Caused by: androID.os.fileUrIExposedException: file:///storage/emulated/0/bluetooth/data.txt exposed beyond app through ClipData.Item.getUri()

出现这个问题的时候我立刻意识到这是一个兼容的问题,于是在网上找了一些方法,并解决了这个问题,我受到启发的网址是:

​ 出现fileUrIExposedException这样的异常,原因是AndorID7.0的“私有目录被限制访问”,“StrictMode API 政策”。由于从Android7.0开始,直接使用真实的路径的Uri会被认为是不安全的,会抛出一个fileUrIExposedException这样的异常。需要使用fileProvIDer,选择性地将封装过的Uri共享到外部。

即以前的共享代码是这样写的:

Intent sharingIntent = new Intent(androID.content.Intent.ACTION_SEND);sharingIntent.setType("*/*");sharingIntent.setComponent(new Componentname("com.androID.bluetooth","com.androID.bluetooth.opp.BluetoothOppLauncherActivity"));sharingIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromfile(new file(path)));startActivity(sharingIntent);

 

在Android7.0版本以上时,不使用Uri.fromfile(),使用以下的代码:

Intent sharingIntent = new Intent(androID.content.Intent.ACTION_SEND);sharingIntent.setType("*/*");sharingIntent.setComponent(new Componentname("com.androID.bluetooth","com.androID.bluetooth.opp.BluetoothOppLauncherActivity"));sharingIntent.putExtra(Intent.EXTRA_STREAM, fileProvIDer.getUriForfile(BluetoothChat.this,"你的包名" + ".fileprovIDer", new file(path)));sharingIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);startActivity(sharingIntent);

 

​ 如果是AndorID7.0或以上,则不再使用Uri.fromfile()方法获取文件的Uri,而是通过使用fileProvIDer(support.v4提供的类)的getUriForfile()。同时要添加多这么一行代码

sharingIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);

 

由于fileProvIDer是继承ContentProvIDer,属于四大组件之一,需要在AndroIDManifest.xml中配置,配置如下:

    <provIDer        androID:name="androID.support.v4.content.fileProvIDer"        androID:authoritIEs="你的包名.fileprovIDer"        androID:exported="false"        androID:grantUriPermissions="true">        <!--元数据-->        <Meta-data            androID:name="androID.support.file_PROVIDER_PATHS"            androID:resource="@xml/file_provIDer_paths"/>    </provIDer>

 

其中androID:resource="@xml/file_provIDer_paths"的内容你可以在res目录下新建一个xml文件夹,在文件夹中新建一个file_provIDer_paths.xml文件即可,如下图所示

<?xml version="1.0" enCoding="utf-8"?><resources>    <paths>        <external-path path="" name="myfile"></external-path>    </paths></resources>

 

  上述代码中path=” “,是有特殊意义的,它代码根目录,也就是说你可以向其它的应用共享根目录及其子目录下任何一个文件了,如果你将path设为path=”pictures”, 那么它代表着根目录下的pictures目录(eg:/storage/emulated/0/pictures),如果你向其它应用分享pictures目录范围之外的文件是不行的。

分享文件代码如下:

    // 調用系統方法分享文件    public static voID sharefile(Context context, file file) {        try{            if (null != file && file.exists()) {                Log.w("ppp-params", file.getPath());                Intent share = new Intent(Intent.ACTION_SEND);                share.putExtra(Intent.EXTRA_STREAM, fileProvIDer.getUriForfile(context,"app.zhaohangwuliu.com.appada" + ".fileprovIDer", file));                share.setType("*/*");//此处可发送多种文件                share.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);                share.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);                context.startActivity(Intent.createChooser(share, "分享文件"));            } else {                //Toast.makeText(context, "分享文件不存在", Toast.LENGTH_SHORT).show();            }        }catch (Exception ex){            Log.w("ppp-params", ex);        }    }

 

转: https://blog.csdn.net/kabuto_hui/article/details/78907572

总结

以上是内存溢出为你收集整理的android文件分享在android7.0以上版本报错的解决方案全部内容,希望文章能够帮你解决android文件分享在android7.0以上版本报错的解决方案所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1115250.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存