How to setup SDK in IntelliJ IDEA?(如何在 IntelliJ IDEA 中设置 SDK?)
问题描述
我没有找到在 IntelliJ IDEA 中设置 SDK 的任何方法.在 ubuntu 16.04 LTS for IntelliJ IDEA 中找不到任何设置 SDK 的路径.
I am not finding any way to setup the SDK in IntelliJ IDEA. Not finding any path to setup the SDK in ubuntu 16.04 LTS for IntelliJ IDEA.
我正在这个 IDE 中工作以开发 mongodb.但由于这个问题无法继续.
I am working in this IDE for working on mongodb. But can't proceed because of this problem.
推荐答案
要在ubuntu上找到java的安装路径,可以在终端运行以下命令:
To find the path where java is installed on ubuntu, you can run the following command from terminal:
$ whereis java
你可能会得到这样的东西:
You may get something like this:
java: /usr/bin/java /etc/java /usr/share/java /usr/lib/jvm
这意味着 java 位于上述路径之一,例如 /usr/bin/java
Which means that the java resides at one of the above paths as for example /usr/bin/java
因此,该目录应该在 IntelliJ 中指定.可以在Project Structure
中配置,按Ctrl + Alt + Shift + S
,选择Platform Settings ->SDKs
,点击绿色按钮(+)
,选择JDK的主目录.
So, that directory should designate in IntelliJ. You can configure in the Project Structure
, press Ctrl + Alt + Shift + S
, choose Platform Settings -> SDKs
, click on green button (+)
, select the home directory for JDK.
这篇关于如何在 IntelliJ IDEA 中设置 SDK?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 IntelliJ IDEA 中设置 SDK?
基础教程推荐
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 降序排序:Java Map 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01