A method for setting Java environment variables under Windows _java

Source: Internet
Author: User

To configure JDK environment variables under Windows XP:
1.
Install the JDK, the installation process can customize the installation directory and other information, such as our choice of installation directory for d:/java/jdk1.5.0_08;

2. after the installation is complete, right click on "My Computer", click "Properties";

3. Select the "Advanced" tab and click "Environment variable".

4. in "System Variables", set 3 properties, Java_home,path,classpath (regardless of the case), if already exist click "Edit", does not exist then click "New";

5.Java_home indicates the JDK installation path, which is the path d:/java/jdk1.5.0_08 selected at the time of installation, including Lib,bin,jre folders under this path (this variable is best set, because after running Tomcat, Eclipse and so on are required by * this variable);

Path enables the system to identify Java commands under any path, set to:

%java_home%/bin;%java_home%/jre/bin

Classpath is the Java load class (class or Lib) path, and only classes in Classpath can be recognized by Java commands, set to:

.; %java_home%/lib/dt.jar;%java_home%/lib/tools.jar (to be added. Represents the current path)

%java_home% is a reference to the java_home specified above;

6."Start the->;" Run ", type" cmd ";

7. Type the command "Java-version", "Java", "Javac" several commands, appear screen, indicating the success of environment variable configuration;

8. All right, finish the call. Let's start with your first Java program.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.