Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望将 PDF 文件转换为一组 PNG 图像。我遇到了大量的 Java 库,但没有一个与 J2ME 兼容。
有没有办法做到这一点?
由于文件末尾的外部参照表,要正确打开PDF库必须使用某种形式。Random Access File这种文件连接在 Java ME 中不可用。
PDF
Random Access File
Java ME 中的库可以将 PDF 完全加载到内存中,这高度依赖于文件大小和可用的手机内存。
您最好创建一个 Web 服务来接收您的 PDF 并从中返回 PNG 图像。