在ANDROID中将数据库数据转换为PDF

发布于 2024-12-27 22:01:37 字数 140 浏览 0 评论 0原文

我想构建一个 Android 应用程序,它将一些数据转换为 pdf 文件,我需要 为了将其保存在我的Android手机中,我搜索了很多文档,但它没有 帮忙。 我正在尝试使用 iText,但我不知道如何在 Android 上使用它。 请让我知道代码。 提前致谢 。

I want to build a android app ,which converts some data to pdf file and i need
to save it in my android phone, i have searched for lot of documents but its not
helping out.
I am trying to use iText but i don't no how to use it for android.
Please let me know the code.
Thanks in advance .

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那伤。 2025-01-03 22:01:37

如果您已经在普通 Java 中使用过 iText,我认为您在 Android 中使用它不会遇到任何困难。将 iText jar 添加到构建路径中。

以下代码向 pdf 文档添加一个段落。

Document document = new Document(PageSize.A4,0,0,10,10);
        PdfWriter.getInstance(document, new FileOutputStream("Image.pdf"));
        Paragraph p =new Paragraph("This is simple text",new Font(Font.FontFamily.ZAPFDINGBATS,20));
        document.open();
        document.add(p);
        document.close();

欢迎提问。

If you have already used iText in normal Java, I don't think you will face any difficulty using it in Android. Add the iText jar in the build path.

Following code adds a paragraph to the pdf document.

Document document = new Document(PageSize.A4,0,0,10,10);
        PdfWriter.getInstance(document, new FileOutputStream("Image.pdf"));
        Paragraph p =new Paragraph("This is simple text",new Font(Font.FontFamily.ZAPFDINGBATS,20));
        document.open();
        document.add(p);
        document.close();

Feel free to ask questions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文