public void savePDF(View view) {
//create document object
Document doc = new Document();
//output file path
String outpath= Environment.getExternalStorageDirectory()+"/mypdf.pdf";
try {
//create pdf writer instance
PdfWriter.getInstance(doc, new FileOutputStream(outpath));
//open the document for writing
doc.open();
//add paragraph to the document
doc.add(new Paragraph("bob"));
//close the document
doc.close();
Toast.makeText(this, "Worked", Toast.LENGTH_SHORT).show();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (DocumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
我正在使用以上代码创建PDF文件并将其存储在设备的外部存储中。以下是我的清单的摘要:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.example.mobileappdevelopment">
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
按下按钮(运行savePDF功能)后,什么都没有发生。没有保存文件,也没有显示吐司。 我在这里做错什么了吗?
还添加了itext依赖项...
implementation 'com.itextpdf:itextg:5.5.10'
答案 0 :(得分:0)
WRITE_EXTERNAL_STORAGE 从API级别19开始,读/写Context.getExternalFilesDir(String)和Context.getExternalCacheDir()返回的应用程序特定目录中的文件不需要此权限。
https://developer.android.com/reference/android/Manifest.permission.html#WRITE_EXTERNAL_STORAGE