gpt4 book ai didi

java - 如何为 IntelliJ IDEA 安装 apache 公共(public)库?

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:17:54 25 4
gpt4 key购买 nike

commons-lang3-3.1-bin.zipcommons.apache.org 下载并使用 java jdk/lib 解压缩到文件夹中。我需要从这个库中导入秒表。 IntelliJ IDEA 怎么做?

更新: 为什么 intelliJ 不能只将 pom.xml 添加到现有项目而不尝试删除它? enter image description here

这样解决:

http://commons.apache.org/ 下载了一个库 intelliJ > Project Structure > Dependencies> + > Library > lib 从 commons.apache.org 的路径

附言。仍在寻找使用 Maven 解决此问题的方法...

没有用 Maven 解决: enter image description here

无法运行项目。可能我必须以某种方式配置它......

1

enter image description here

2

enter image description here

如何解决?

enter image description here

最佳答案

如果可以使用Maven或 Gradle,那么您可以将该库作为依赖项包含在内:

$ tree
.
|-- pom.xml
`-- src
|-- main
| `-- java
| `-- test
| `-- App.java
`-- test
`-- java
`-- test
`-- AppTest.java

7 directories, 3 files

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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>myGroup</groupId>
<artifactId>myArtifact</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>deleteme</name>
<url>http://maven.apache.org</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.1</version>
</dependency>
</dependencies>
</project>

IntelliJ 自动将依赖项添加到类路径。

如果您在 IntelliJ 中将 pom.xml 文件作为新项目打开,依赖项将自动添加到类路径中。

编辑

否则,如果您在 IntelliJ 中编辑项目设置,请转到模块部分,然后是依赖项选项卡。您可以在那里添加依赖项。参见 here .

关于java - 如何为 IntelliJ IDEA 安装 apache 公共(public)库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19413957/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com