創建動態PDF閱讀器我用動態下面的代碼也使用iText庫創建的PDF。 當我添加的代碼,用於將圖像以使用以下代碼此PDF文件:問題,而在Android的
try {
String str_path = Environment.getExternalStorageDirectory()
.toString();
File file;
file = new File(str_path, getString(R.string.app_name)
+ ".pdf");
FileOutputStream fos = new FileOutputStream(file);
Document document = new Document();
PdfWriter.getInstance(document, fos);
document.open();
document.add(new Paragraph("Hello World, iText"));
document.add(new Paragraph(new Date().toString()));
Image image = Image.getInstance("ic_launcher.png");
document.add(image);
document.close();
fos.close();
} catch (Exception e) {
e.printStackTrace();
}
比我檢索0字節的PDF文件。
我不知道什麼是問題,如果你有任何想法與它相關,請分享給我。謝謝。
如何解決這個問題? –