zoukankan      html  css  js  c++  java
  • 什么是java path环境变量

    参考:https://docs.oracle.com/javase/tutorial/essential/environment/paths.html

    从orcle官网的文档中可以看到java path环境变量:

    java path环境变量就是java在执行命令时 寻找javac这个程序的位置(拓展开来其它应用应该也是这样,资源的环境变量就是某个应用对自己所需要用的资源,所在的位置){一个是程序所在的位置,一个是资源所在的位置}。

    The PATH environment variable is a series of directories separated by semicolons (;). Microsoft Windows looks for programs in the PATH directories in order, from left to right. You should have only one bin directory for the JDK in the path at a time (those following the first are ignored), so if one is already present, you can update that particular entry.

    The following is an example of a PATH environment variable:

    C:Javajdk1.7.0in;C:WindowsSystem32;C:Windows;C:WindowsSystem32Wbem

    windows的环境变量用 ; 隔开

    设置方法:(原文)

    Windows XP

    1. Select Start, select Control Panel. double click System, and select the Advanced tab.
    2. Click Environment Variables. In the section System Variables, find the PATH environment variable and select it. Click Edit. If the PATH environment variable does not exist, click New.
    3. In the Edit System Variable (or New System Variable) window, specify the value of the PATH environment variable. Click OK. Close all remaining windows by clicking OK.

    Windows Vista:

    1. From the desktop, right click the My Computer icon.
    2. Choose Properties from the context menu.
    3. Click the Advanced tab (Advanced system settings link in Vista).
    4. Click Environment Variables. In the section System Variables, find the PATH environment variable and select it. Click Edit. If the PATH environment variable does not exist, click New.
    5. In the Edit System Variable (or New System Variable) window, specify the value of the PATH environment variable. Click OK. Close all remaining windows by clicking OK.

    Windows 7:

    1. From the desktop, right click the Computer icon.
    2. Choose Properties from the context menu.
    3. Click the Advanced system settings link.
    4. Click Environment Variables. In the section System Variables, find the PATH environment variable and select it. Click Edit. If the PATH environment variable does not exist, click New.
    5. In the Edit System Variable (or New System Variable) window, specify the value of the PATH environment variable. Click OK. Close all remaining windows by clicking OK.

    Note: You may see a PATH environment variable similar to the following when editing it from the Control Panel:
    %JAVA_HOME%in;%SystemRoot%system32;%SystemRoot%;%SystemRoot%System32Wbem
    
    Variables enclosed in percentage signs (%) are existing environment variables. If one of these variables is listed in the Environment Variables window from the Control Panel (such as JAVA_HOME), then you can edit its value. If it does not appear, then it is a special environment variable that the operating system has defined. For example,SystemRoot is the location of the Microsoft Windows system folder. To obtain the value of a environment variable, enter the following at a command prompt. (This example obtains the value of the SystemRoot environment variable):
    echo %SystemRoot%
    

    Update the PATH Variable (Solaris and Linux)

    You can run the JDK just fine without setting the PATH variable, or you can optionally set it as a convenience. However, you should set the path variable if you want to be able to run the executables (javacjavajavadoc, and so on) from any directory without having to type the full path of the command. If you do not set the PATH variable, you need to specify the full path to the executable every time you run it, such as:

    % /usr/local/jdk1.7.0/bin/javac MyClass.java
    

    To find out if the path is properly set, execute:

    % java -version
    

    This will print the version of the java tool, if it can find it. If the version is old or you get the error java: Command not found, then the path is not properly set.

    To set the path permanently, set the path in your startup file.

    For C shell (csh), edit the startup file (~/.cshrc):

    set path=(/usr/local/jdk1.7.0/bin $path)
    

    For bash, edit the startup file (~/.bashrc):

    PATH=/usr/local/jdk1.7.0/bin:$PATH
    export PATH
    

    For ksh, the startup file is named by the environment variable, ENV. To set the path:

    PATH=/usr/local/jdk1.7.0/bin:$PATH
    export PATH
    

    For sh, edit the profile file (~/.profile):

    PATH=/usr/local/jdk1.7.0/bin:$PATH
    export PATH
    

    Then load the startup file and verify that the path is set by repeating the java command:

    For C shell (csh):

    % source ~/.cshrc
    % java -version
    

    For kshbash, or sh:

    % . /.profile
    % java -version
  • 相关阅读:
    python测试开发django-rest-framework-92.反序列化(ModelSerializer)之DecimalField保留2位小数
    python测试开发django-rest-framework-91.反序列化(ModelSerializer)之ChoiceField选项字段校验
    python测试开发django-rest-framework-90.反序列化(ModelSerializer)之唯一字段校验UniqueValidator
    python测试开发django-rest-framework-89.反序列化(ModelSerializer)之read_only和write_only
    python测试开发django-rest-framework-88.反序列化(ModelSerializer)之校验传入参数
    python接口自动化39-JMESPath解析json数据
    sql server全文搜索和filestream
    sql server 2008 filestream
    sql server存储和搜索非结构化数据
    cross server怎么取出自定义头部的Token
  • 原文地址:https://www.cnblogs.com/codetime/p/5324519.html
Copyright © 2011-2022 走看看