以下代码在使用API 22的设备中运行得非常好,但在使用API 24的设备中,它会出现以下错误:
select id,name,[display],[contact],[ship]
from #b
pivot(max(value) for type in([display],[contact],[ship])) As d
这是我的代码:
java.lang.SecurityException: MODE_WORLD_READABLE no longer supported
如果我将MODE_WORLD_READABLE更改为MODE_PRIVATE,则它将停止在所有设备中工作。 API 22的设备会出现以下错误
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();
}
}
使用API 24的设备抛出以下异常
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
有人可以帮助我解决问题。
感谢。
答案 0 :(得分:0)
找到解决方法,而不是使用MODE_WORLD_READABLE,因为查看here
int MODE_WORLD_READABLE 此常量在API级别17中已弃用。 创建世界可读文件非常危险,可能会在应用程序中造成安全漏洞。强烈劝阻;相反,应用程序应该使用更正式的交互机制,例如ContentProvider,BroadcastReceiver和Service。无法保证此访问模式将保留在文件中,例如在进行备份和还原时。
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;
}
}
希望这有帮助
答案 1 :(得分:0)
您应该使用FileProvider通过Intent.ACTION_VIEW来提供文件。
代码这样做,你可以在这个网站上找到很多。