Java Development Environment Configuration

Source: Internet
Author: User
Tags netbeans

In this section we will show you how to build a Java development environment.

Window System install Java download JDK

First we need to download the Java SDK jdk,:http://www.oracle.com/technetwork/java/javase/downloads/index.html, click the download button below:

In the download page you need to choose to accept the license and choose the corresponding version according to your own system, this article takes the Window 64-bit system as an example:

After downloading the JDK installation according to the prompts, as well as installing the JDK will also install the JRE, installed on it.

Install the JDK, you can customize the installation directory and other information, such as we choose to install directory C:\Program Files (x86) \java\jdk1.8.0_91.

Configuring Environment variables

1. After the installation is complete, right click on "My Computer", click "Properties", select "Advanced System Settings";

2. Select the "Advanced" tab and click on "Environment variables";

The screen will then appear as shown:

Set 3 properties in "System variable", Java_home,path,classpath (case does not matter), if already exist then click "Edit", not exist then click "New".

    • variable name: java_home
    • variable value: c:\program Files (x86) \java\jdk1.8.0_91         //to configure the
    according to its actual path
    • variable name: classpath
    • variable value:         //Remember that there is a "."
    • Variable name:Path
    • Variable value:%java_home%\bin;%java_home%\jre\bin;
Java_home settings

Path settings

CLASSPATH settings

This is the Java environment configuration, after the configuration is complete, you can start Eclipse to write code, it will automatically complete the configuration of the Java environment.

Note: If you use more than 1.5 versions of the JDK, you can compile and run the Java program normally without setting the CLASSPATH environment variable.

Test whether the JDK was installed successfully

1, "Start", "Run", type "cmd";

2, type the command: java-version,java,javac Several commands, the following information appears, indicating that the environment variable configuration is successful;

LINUX,UNIX,SOLARIS,FREEBSD environment variable Settings

The environment variable path should be set to point to the location where the Java binaries are installed. If Setup encounters difficulties, refer to the shell documentation.

For example, if you use bash as your shell, you can add the following to the end of your. bashrc file: Export Path=/path/to/java: $PATH

Popular Java Development tools

The so-called 工欲善其事 its prerequisite, we in the development of Java language process also need to be good development tools, the current market of many Ides, this article for you recommend the following several Java development tools:

  • select  eclipse IDE for Java developers :

  • notepad++: notepad++ is a free code editor under the Microsoft Windows environment: http://notepad-plus-plus.org/
  • Netbeans: Open Source free java IDE,: http://www.netbeans.org/index.html

Java Development Environment Configuration

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.