I implement this target by below code
open file:
/* 打开文件
* @param file
*/
public static void openFile(Activity context, File file) {
Intent intent = new Intent();
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
//设置intent的Action属性
intent.setAction(Intent.ACTION_VIEW);
//intent.addCategory(Intent.CATEGORY_DEFAULT);
//获取文件file的Uri
Uri uri = UriUtils.file2Uri(file);
//获取文件file的MIME类型
String type = getMimeType(context, uri);
//设置intent的data和Type属性。
intent.setDataAndType(/*uri*/uri, type);
try {
//跳转
context.startActivity(intent); //这里最好try一下,有可能会报错。 //比如说你的MIME类型是打开邮箱,但是你手机里面没装邮箱客户端,就会报错。
} catch (Exception e) {
e.printStackTrace();
}
}
public static String getMimeType(Context context, Uri uri) {
ContentResolver cR = context.getContentResolver();
MimeTypeMap mime = MimeTypeMap.getSingleton();
//String type = mime.getExtensionFromMimeType(cR.getType(uri));
String type = cR.getType(uri);
return type;
}
file to uri
/**
* File to uri.
*
* @param file The file.
* @return uri
*/
public static Uri file2Uri(@NonNull final File file) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
String authority = Utils.getApp().getPackageName() + ".utilcode.provider";
return FileProvider.getUriForFile(Utils.getApp(), authority, file);
} else {
return Uri.fromFile(file);
}
}
provider declare
<provider
android:name="com.blankj.utilcode.util.UtilsFileProvider"
android:authorities="${applicationId}.utilcode.provider"
android:exported="false"
android:grantUriPermissions="true" >
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/util_code_provider_paths" />
</provider>
provider resource
<?xml version="1.0" encoding="utf-8"?>
<paths>
<root-path
name="root_path"
path="" />
<files-path
name="files_path"
path="." />
<cache-path
name="cache_path"
path="." />
<external-path
name="external_path"
path="." />
<external-files-path
name="external_files_path"
path="." />
<external-cache-path
name="external_cache_path"
path="." />
<external-media-path
name="external_media_path"
path="." />
</paths>
Now I have a question: I can open zip or rar files by choosing qq browser, but not by choosing quark or uc browser
How I can do to open zip or rar files by choosing quark or uc browser. Thanks for your time first.
By the way, I can open normal format file such as jpeg or txt by choosing any browser.
I solved it myself.
Not like qq browser, uc browser won't copy stream to itself storage, it will ignore an uri of zip what can't bring its source path.So I handle zip or rar file by transing operation as follows:
1.forbid scoped storage
2.transfer uri to other uri that can be used to get real path from MediaStore
3.modify open file code
refer following links:
https://blog.csdn.net/qq_40716795/article/details/127738057 https://blog.csdn.net/qq_36707431/article/details/118335407