Java 安装问题



我正在尝试编写我的第一个名为HelloWorld的Java程序,但我遇到了以下错误:

javac: 找不到文件: HelloWorld.java

用法:爪哇

我的系统:Windows 10, 64bit

文件路径:C:ProgramFilesJavajdk9.0.4bin;%SYSTEMROOT%System32WindowsPowerShellv1.0

恐怕Java出了什么问题。当我在cmd中键入java时,出现以下错误:

C:\Users\Kamil>java 用法: java [options] [args...] (执行类(或 Java [选项] -jar [参数...] (执行 jar 文件(或 java [选项] -m [/] [参数...] Java [选项] --模块 [/] [参数...] (执行模块中的主类(

主类 -jar 、 -m 或 --module 后面的参数 /作为参数传递给主类。

其中选项包括:

-d32          Deprecated, will be removed in a future release
-d64          Deprecated, will be removed in a future release
-cp <class search path of directories and zip/jar files>
-classpath <class search path of directories and zip/jar files>
--class-path <class search path of directories and zip/jar files>
              A ; separated list of directories, JAR archives,
              and ZIP archives to search for class files.
-p <module path>     A ; separated list of directories, each directory
              is a directory of modules.
--upgrade-module-path <module path>...
              A ; separated list of directories, each directory
              is a directory of modules that replace upgradeable
              modules in the runtime image
--add-modules <module name>[,<module name>...]
              root modules to resolve in addition to the initial module.
              <module name> can also be ALL-DEFAULT, ALL-SYSTEM,
              ALL-MODULE-PATH.
--list-modules
              list observable modules and exit
-d <module name>
--describe-module <module name>
              describe a module and exit
--dry-run     create VM and load main class but do not execute main method.
              The --dry-run option may be useful for validating the
              command-line options such as the module system configuration.
--validate-modules  validate all modules and exit
              The --validate-modules option may be useful for finding
              conflicts and other errors with modules on the module path.
-D<name>=<value>
              set a system property
-verbose:[class|module|gc|jni]
              enable verbose output
-version      print product version to the error stream and exit
--version     print product version to the output stream and exit
-showversion  print product version to the error stream and continue
--show-version
              print product version to the output stream and continue
--show-module-resolution
              show module resolution output during startup
-? -h -help
              print this help message to the error stream
--help        print this help message to the output stream
-X            print help on extra options to the error stream

有人可以帮助认识到这意味着什么吗?我重新安装了它,但它仍然是一样的。

您必须设置环境变量。打开命令提示符并键入 javac。您将收到一条消息"javac"无法识别。四

您仍然无法开始编程。您必须设置环境变量。打开命令提示符并键入 javac。您将收到一条消息"javac"无法识别.这意味着命令提示符应用程序不知道 java 命令,尽管您已成功安装了 JDK。那么我们如何让它被识别或将java命令引入计算机(命令提示符(呢?只需在命令提示符和 java 命令所在的位置之间建立链接即可。

Right click My Computer > 
Properties > 
Advanced System Setting > Environment Variables.

现在,您可以为 Path 变量添加 Java 命令的路径通常 java 安装目录位于以下路径中:

C:/Program Files/Java/jdk.<version>/bin/

打开cmd。每行后按回车键:

D:
cd practice
javac HelloWorld.java

相关内容

  • 没有找到相关文章

最新更新