在下面的代碼中,我創建了一個pdf文件,並想知道如何打開相同的文件,如何在屏幕上顯示它?如何打開PDF文件並將其顯示在屏幕上
Document document = new Document();
try {
PdfWriter.getInstance(document, new FileOutputStream(
android.os.Environment.getExternalStorageDirectory()
+ java.io.File.separator + "droidtext"
+ java.io.File.separator + "HelloWorld.pdf"));
document.open();
document.add(new Paragraph("Hello World"));
} catch (DocumentException de) {
System.err.println(de.getMessage());
} catch (IOException ioe) {
System.err.println(ioe.getMessage());
}
document.close();
使用任何庫itext? – Raghunandan
如何? 你能代替我嗎? 我不知道。 –
你在使用任何外部庫嗎? – Raghunandan