英文:
Can't use 'java' command in IntelliJ terminal when trying to run my main in it
问题
我试图使用 java
和 javac
命令运行我的 Java 程序,但终端返回以下内容:
'java' 不是内部或外部命令,也不是可运行的程序或批处理文件。
我当前在使用 IntelliJ IDEA 2020.2,并且已安装 JDK 14.1。
英文:
I'm trying to run my java program using the java
and javac
command, but it returns this in the terminal:
'java' is not recognized as an internal or external command,
operable program or batch file.
I'm currently using IntelliJ IDEA 2020.2 and have JDK 14.1 installed.
答案1
得分: 1
你已经配置了系统的 PATH 变量吗?
请参阅 https://www.java.com/en/download/help/path.html。
英文:
Have you configured your system PATH variable?
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论