如何在Android上使用iText或其他一些库创建PDF文件?

前端之家收集整理的这篇文章主要介绍了如何在Android上使用iText或其他一些库创建PDF文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在 Android上使用iText或其他一些库创建PDF文件

iText上有没有关于android的教程?

谢谢

解决方法

您可以使用iText创建PDF.使用最新版本(5.1.3)并在构建路径中仅包含itextpdf-5.1.3.jar.你可以使用这样的东西来完成pdf的创建.
Document document = new Document();
file = Environment.getExternalStorageDirectory().getPath() + "/Hello.pdf"
PdfWriter.getInstance(document,new FileOutputStream(file));
document.open();
Paragraph p = new Paragraph("Hello PDF");
document.add(p);
document.close();

另外,不要忘记使用权限写入manifest.xml中的外部存储.

原文链接:https://www.f2er.com/android/314180.html

猜你在找的Android相关文章