如何在 Intellij 中导入另一个 java 项目包并使用它

How to import another java project package in Intellij and use it

提问人:Evry 提问时间:9/2/2020 最后编辑:Alapan DasEvry 更新时间:9/3/2020 访问量:488

问:

我是java的新手,我正在尝试在Intellij IDEA的另一个项目中导入项目包。我想在我的第二个项目中使用 LSE 和 LSENode。

这是我尝试导入的包(buarque.thiago.dataTypes)的项目 -

Here's the project with the package (buarque.thiago.dataTypes) I'm trying to import

这是我的第二个项目,我正在尝试导入第一个项目 -

Here's my second project, that I'm trying to import the first one

这是我的第二个项目模块——

Here's my second project modules

我已经导入了我在谷歌上找到的第一个包

我的代码 -

My code

错误-

Error

java intellij-idea

评论

0赞 dan1st is crying 9/2/2020
将项目导出为 jar 并导入?
1赞 Code-Apprentice 9/2/2020
您可以使用 Maven 或 Gradle 等构建工具执行此操作。
0赞 Evry 9/3/2020
我看到有人在没有 Maven 的情况下在 Netbeans 上做这件事,有什么办法在 Intellij 上做这件事吗?
0赞 chrylis -cautiouslyoptimistic- 9/3/2020
有一种方法,但学习构建工具将是一个更好的选择,这是所有严肃软件的管理方式。

答:

1赞 CrazyCoder 9/3/2020 #1

您可以使用模块依赖项。在IntelliJ IDEA项目中将2个项目配置为模块,使一个模块依赖于另一个模块。

评论

0赞 Evry 9/3/2020
我做到了 [图片 3],我想我不知道如何在我的第二个项目中导入它
0赞 CrazyCoder 9/3/2020
您添加的是目录,而不是模块。添加一个具有正确配置的内容根的新模块:jetbrains.com/help/idea/configuring-content-roots.html,然后将此模块添加到另一个模块的 deps 中。