我在JAVA中创建了一个简单的程序,其中有一个按钮可以在单击时创建PDF。我使用iText JAVA库生成PDF。
我在" Java构建路径"中包含了iText .jar文件。但是当我尝试导入库的类时,我收到此错误:The import com.itextpdf.cannot be resolved.
例如:
import com.itextpdf.text.BaseColor; // The import com.itextpdf.text.BaseColor cannot be resolved
import com.itextpdf.text.Document; // The import com.itextpdf.text.Document cannot be resolved
import com.itextpdf ... // and so on
答案 0 :(得分:1)
尝试按照以下步骤操作:
现在您可以选择该文件夹中的所有JAR :(右键单击项目文件夹 - >构建路径 - >添加外部存档)。
答案 1 :(得分:0)
这取决于您使用的是iText的版本7还是版本5。如果您使用的是7,则需要导入的包将从com.itextpdf.*
更改为com.itext.kernel.*
,com.itext.layout.*
等。