所以,我想要实现的是将回收站视图内容保存在pdf文件中。我使用 PDFDocument类来实现这一目标。我已经添加了许可。
uses-permission android:name =“android.permission.WRITE_EXTERNAL_STORAGE”
我不知道我在这里做错了什么。我已经尝试更改存储的位置,但每次都出现相同的错误。
如果有人能告诉我这里我做错了什么。以下是相关代码:
if (selectedId == R.id.action_save_pdf) {
// create a new document
PdfDocument document = new PdfDocument();
// crate a page description
PdfDocument.PageInfo pageInfo =
new PdfDocument.PageInfo.Builder(100, 100, 1).create();
// start a page
PdfDocument.Page page = document.startPage(pageInfo);
// finish the page
document.finishPage(page);
String state = Environment.getExternalStorageState();
if (Environment.MEDIA_MOUNTED.equals(state)) {
File root = Environment.getExternalStorageDirectory();
File dir = new File(root.getAbsolutePath() + "/MyPDFDocument");
if (!dir.exists()) {
dir.mkdir();
}
File filePath = new File(dir, "questions.pdf");
try {
document.writeTo(new FileOutputStream(filePath));
Toast.makeText(this, "Saved to PDF", Toast.LENGTH_LONG).show();
} catch (IOException e) {
e.printStackTrace();
Toast.makeText(this, "Save Unsuccessful!",
Toast.LENGTH_LONG).show();
}
} else {
Toast.makeText(this, "External Storage not available!", Toast.LENGTH_SHORT).show();
}
// close the document
document.close();
return true;
}
return super.onOptionsItemSelected(item);
}
提前谢谢你。
答案 0 :(得分:1)
我找到了自己的答案。实际上在android api level> 23 ,您必须为WRITE_EXTERNAL_STORAGE请求运行时权限。由于它包含在危险权限中,因此您必须提供运行时权限以允许用户明确允许这些权限。因此,只需在清单中添加写入外部存储权限即可。
以下是我用来解决问题的链接。
https://developer.android.com/training/permissions/requesting.html#java