Java + Linux 上的 PDFBox
我需要为使用 PDFBox 的服务器编写一个小程序。我正在 Windows 下使用 NetBeans 进行编写。将 PDFBox jar 导出到服务器后,如何将其添加到程序 jar 中?
I need to write a small program for a server which will use PDFBox. I'm writing under windows with NetBeans. How do I add PDFBox jar to my program jar once I export it to the server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不必将
pdfbox.jar
放入应用程序的 jar 中。将它们分开并在运行之前将它们添加到类路径中会更容易。例如,将两个 jar 放在同一目录中并运行:
You don't necessarily have to put
pdfbox.jar
into your application's jar. It's easier to keep them separate and just add them both to your classpath before running it.For example, place both jars in the same directory and run: