Java路径设置

时间:2016-02-13 03:39:30

标签: java git-bash

我试图在我的电脑上安装java,但我遇到了问题。我相信这些问题与正确配置路径有关。

目前,如果我在cmd行中运行java,我会得到以下内容:

用法:java [-options] class [args ...]            (执行课程)    或java [-options] -jar jarfile [args ...]            (执行jar文件) 选项包括:     -d32使用32位数据模型(如果可用)     -d64使用64位数据模型(如果可用)     -client选择“客户端”VM     -server选择“服务器”VM                   默认VM是客户端。

-cp <class search path of directories and zip/jar files>
-classpath <class search path of directories and zip/jar files>
              A ; separated list of directories, JAR archives,
              and ZIP archives to search for class files.
-D<name>=<value>
              set a system property
-verbose:[class|gc|jni]
              enable verbose output
-version      print product version and exit
-version:<value>
              Warning: this feature is deprecated and will be removed
              in a future release.
              require the specified version to run
-showversion  print product version and continue
-jre-restrict-search | -no-jre-restrict-search
              Warning: this feature is deprecated and will be removed
              in a future release.
              include/exclude user private JREs in the version search
-? -help      print this help message
-X            print help on non-standard options
-ea[:<packagename>...|:<classname>]
-enableassertions[:<packagename>...|:<classname>]
              enable assertions with specified granularity
-da[:<packagename>...|:<classname>]
-disableassertions[:<packagename>...|:<classname>]
              disable assertions with specified granularity
-esa | -enablesystemassertions
              enable system assertions
-dsa | -disablesystemassertions
              disable system assertions
-agentlib:<libname>[=<options>]
              load native agent library <libname>, e.g. -agentlib:hprof
              see also, -agentlib:jdwp=help and -agentlib:hprof=help
-agentpath:<pathname>[=<options>]
              load native agent library by full pathname
-javaagent:<jarpath>[=<options>]
              load Java programming language agent, see java.lang.instrument
-splash:<imagepath>
              show splash screen with specified image

有关详细信息,请参阅http://www.oracle.com/technetwork/java/javase/documentation/index.html

然而,当我尝试运行javac时,我得到以下内容:

bash:javac:找不到命令

我尝试按照youtube上的视频设置路径,但似乎没有帮助。

非常感谢任何建议。

提前谢谢。

2 个答案:

答案 0 :(得分:2)

首先在您的系统中安装JDK

执行以下操作后

1)。我的电脑 - &gt;右键单击 - &gt;特性

2)。左侧预先系统设置

3)。点击环境变量

4)。单击用户变量System_name

中的新建

5)。变量名称: - PATH

if(pressedflag){
   list.add(arrayList.get(position));
   pressedFlag = false;
}else{
   list.remove(arrayList.get(position));
   pressedFlag = true;
}

示例: - C:\ Program Files \ Java \ jdk1.8.0_45 \ bin;

然后在cmd中输入 JAVA JAVAC

答案 1 :(得分:0)

您是否只是想在系统上安装java来运行程序,还是想编写和执行代码?如果您只想为程序安装它,那么java网站会提供安装java以在您的系统上运行的所有下载。为了编写代码,我推荐DrJava,这是一个开发环境,它相对易于使用,并且具有许多功能,一旦您学习并需要它们,就可以实现强大的编码能力。如果我理解你要做的事情,我希望这会有所帮助。