如何将 iText 添加到我的 netBeans 项目中?

How to add iText into my netBeans project?

我使用的是 Netbeans 8.0.2,我正在尝试将我的输出作为 PDF 文件提供。在快速 google 搜索中,我了解到 iText 可以帮助我做到这一点。但是如何将 iText 包导入到我的项目中呢?
我应该如何导入我下载的包(最新)。

如果您的项目使用 Maven,那么您只需将 iText 添加到您的 pom.xml

<dependency> <groupId>com.itextpdf</groupId> <artifactId>itextpdf</artifactId> <version>5.5.8</version> </dependency>

http://developers.itextpdf.com/itext-java

http://github.com/itext/itextpdf/releases/latest .zip 文件中找到 itextpdf.jar 并添加到项目中。还有其他 jar 用于导入到 .zip 文件中的 java 项目。

希望对您有所帮助。

将依赖项添加到 pom.xml 文件并单击项目 "Resolve Project Problems" -> Resolve...