Android 上的 PDFBox
我正在尝试使用 PDFbox 阅读 PDF 并在 Android 上显示内容。我只能阅读 PDF 并在 Android webview 中显示它。谁能告诉我如何以另一种方式显示PDF?或者也许 PDFBox 与 Android 不兼容?
I'm trying to read PDF and show the content on Android using PDFbox. I can only read PDF and show it in Android webview. Can anybody tell me how to show the PDF in another way? Or maybe PDFBox is not compatible with Android?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
PDFBox(最新版本,1.5)与 Android 不兼容。
-- 更新 --
正确,就像 @Gili 所说,因为 AWT 依赖性。 Android 在其运行时中没有 AWT 或 Swing 相关类。
PDFBox (lastest release, 1.5) is not compatible with Android.
-- update --
Correct, like @Gili said, because of AWT dependencies. Android has no AWT nor Swing related classes in its Runtime.
我最近做了一个 PDFBox 到 Android 的移植。这仅适用于从 PDF 文档中提取文本。
您可以在这里找到它 - https://github.com/RatheeshRavindran/PDFBoxLight
请注意,它仍然是“测试版”版本。
I recently did a port of PDFBox to Android. This is only for text extraction from PDF documents.
You can find it here - https://github.com/RatheeshRavindran/PDFBoxLight
Please note it is still a 'Beta' release.
无法在 Android 中使用 PDFbox 创建 PDF
PDFs cannot be created using PDFbox in Android