0% found this document useful (0 votes)
112 views1 page

Java Platform, Standard Edition Development Kit (Java SE 6 Update 27)

To compile and run Java programs, you need to install the Java Development Kit (JDK) if not already present. This involves downloading the latest JDK, noting the installation directory, and modifying the system PATH variable to include the JDK's bin folder so the Java compiler and interpreter can be found.

Uploaded by

bing
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
112 views1 page

Java Platform, Standard Edition Development Kit (Java SE 6 Update 27)

To compile and run Java programs, you need to install the Java Development Kit (JDK) if not already present. This involves downloading the latest JDK, noting the installation directory, and modifying the system PATH variable to include the JDK's bin folder so the Java compiler and interpreter can be found.

Uploaded by

bing
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

You will use the Java compiler javac to compile your Java programs and the Java interpreter

java to run them. You should skip the first step if Java is already installed on your machine.

Download and install the latest version of the Java Platform, Standard Edition Development Kit (Java SE 6 Update 27). Note the installation directory for laterprobably something like C:\Program Files\Java\jdk1.6.0_27\bin. To make sure that Windows can find the Java compiler and interpreter: o Select Start -> Computer -> System Properties -> Advanced system settings -> Environment Variables -> System variables -> PATH. [ In Vista, select Start -> My Computer -> Properties -> Advanced -> Environment Variables -> System variables -> PATH. ] [ In Windows XP, Select Start -> Control Panel -> System -> Advanced -> Environment Variables -> System variables -> PATH. ]
o o

Prepend C:\Program Files\Java\jdk1.6.0_27\bin; to the beginning of the PATH variable. Click OK three times.

You might also like