无法在 IntelliJ 中导入 itextpdf 5 - Maven
Cannot import itextpdf 5 in IntelliJ - Maven
我正在尝试使用 itextpdf5,但 IntelliJ 似乎找不到该包。我正在使用 Maven 来管理依赖项,这是我添加到 pom.xml
中的内容
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.5.13.2</version>
</dependency>
然后我尝试将包导入到我的一个 .java 文件中:
import com.itextpdf;
但我得到的是“java:包com不存在”。
我尝试执行 mvn clean、mvn install,基本上是 mvn“一切”,重新启动 IDE,但没有任何变化。我错过了什么吗?
这是我的完整 pom.xml 文件,以备不时之需
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.thatdc</groupId>
<artifactId>BreadAndButter</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>13</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>13</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.9</version>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.5.13.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<release>11</release>
</configuration>
</plugin>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.3</version>
<configuration>
<mainClass>org.thatdc.App</mainClass>
</configuration>
</plugin>
</plugins>
</build>
您不能导入像 Java 中那样的包。
导入特定的 class:
import com.itextpdf.text.pdf.PdfReader;
或导入完整包:
import com.itextpdf.text.pdf.*;
我正在尝试使用 itextpdf5,但 IntelliJ 似乎找不到该包。我正在使用 Maven 来管理依赖项,这是我添加到 pom.xml
中的内容<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.5.13.2</version>
</dependency>
然后我尝试将包导入到我的一个 .java 文件中:
import com.itextpdf;
但我得到的是“java:包com不存在”。 我尝试执行 mvn clean、mvn install,基本上是 mvn“一切”,重新启动 IDE,但没有任何变化。我错过了什么吗?
这是我的完整 pom.xml 文件,以备不时之需
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.thatdc</groupId>
<artifactId>BreadAndButter</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>13</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>13</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.9.9</version>
</dependency>
<dependency>
<groupId>com.itextpdf</groupId>
<artifactId>itextpdf</artifactId>
<version>5.5.13.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<release>11</release>
</configuration>
</plugin>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.3</version>
<configuration>
<mainClass>org.thatdc.App</mainClass>
</configuration>
</plugin>
</plugins>
</build>
您不能导入像 Java 中那样的包。
导入特定的 class:
import com.itextpdf.text.pdf.PdfReader;
或导入完整包:
import com.itextpdf.text.pdf.*;