以下代码在使用 API 22 的设备中运行良好,但在具有 API 24 的设备中,它会给出以下错误:
java.lang.SecurityException: MODE_WORLD_READABLE no longer supported
这是我的代码:
private void CopyReadAssets(String filename) {
AssetManager assetManager = getAssets();
InputStream in = null;
OutputStream out = null;
File file = new File(getFilesDir(), filename);
try {
in = assetManager.open(filename);
out = openFileOutput(file.getName(), Context.MODE_WORLD_READABLE);
copyFile(in, out);
in.close();
in = null;
out.flush();
out.close();
out = null;
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file),"application/pdf");
startActivity(intent);
} catch (Exception e)
{
Log.e("cra",e.toString());
Toast.makeText(PdfFilesList.this, "cra: "+e.toString(), Toast.LENGTH_SHORT).show();
}
}
如果我将MODE_WORLD_READABLE更改为MODE_PRIVATE,那么它将停止在所有设备中工作。具有 API 22 的设备给出以下错误
11-16 12:00:53.133 16531-31103/? E/DisplayData: openFd: java.io.FileNotFoundException: Permission denied
11-16 12:00:53.134 16531-31103/? E/PdfLoader: Can't load file (doesn't open) Display Data [PDF : 818 New Jeevan Nidhi.pdf] +FileOpenable, uri: file:///data/data/com.user.plansmart/files/818%20New%20Jeevan%20Nidhi.pdf
具有 API 24 的设备引发以下异常
11-16 12:05:00.100 2682-2682/com.user.plansmart E/cra: android.os.FileUriExposedException: file:///data/user/0/com.user.plansmart/files/827%20Jeevan%20Rakshak.pdf exposed beyond app through Intent.getData()
有人可以帮助我解决问题吗?
谢谢。
自从看这里以来,找到了解决方法而不是使用MODE_WORLD_READABLE
int MODE_WORLD_READABLE 此常量在 API 级别 17 中已弃用。 创建全局可读文件非常危险,并且可能会导致应用程序中出现安全漏洞。强烈建议不要这样做;相反,应用程序应使用更正式的交互机制,例如 ContentProvider、BroadcastReceiver 和服务。无法保证此访问模式将保留在文件上,例如在文件进行备份和还原时。
private void CopyReadAssets(String filename) {
AssetManager assetManager = getAssets();
InputStream in;
OutputStream out;
try {
in = assetManager.open(filename);
String outDir = Environment.getExternalStorageDirectory().getAbsolutePath();
File outFile = new File(outDir, filename);
if(outFile.createNewFile()){
return;
}
out = new FileOutputStream(outFile);
copyFile(in, out);
in.close();
out.flush();
out.close();
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(outFile), "application/pdf");
startActivity(intent);
} catch (Exception e) {
Log.e("cra", e.toString());
Toast.makeText(this, "cra: " + e.toString(), Toast.LENGTH_SHORT).show();
}
}
对于设备,在 M 之后,您需要单独请求权限。
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
if (ContextCompat.checkSelfPermission(this, Manifest.permission.WRITE_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED) {
ActivityCompat.requestPermissions(this,
new String[]{Manifest.permission
.READ_EXTERNAL_STORAGE, Manifest.permission.WRITE_EXTERNAL_STORAGE},
102);
}
} else {
CopyReadAssets("yourpdf.pdf");
}
然后在 onRequestPermissionsResult 中实现您的代码。
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
switch (requestCode) {
case 102:
CopyReadAssets("yourpdf.pdf");
break;
}
}
希望这有帮助
您应该使用 FileProvider 来提供包含Intent.ACTION_VIEW的文件。
代码这样做,所以你可以在这个网站上找到很多。