Các bạn vào http://java.sun.com/javase/downloads/index.jsp để down bản JDK về.

JDK 6u1

The Java SE Development Kit (JDK) includes the Java Runtime Environment (JRE) and command-line development tools that are useful for developing applets and applications.


Mình down bản jdk-6u1-windows-i586-p.exe . Cài đặt tại thư mục C:\Java\J2SDK .Trong thư mục bin (nằm trong thư mục J2SDK) có chứa file

+ javac.exe : Đây là trình biên dịch của java. Bạn muốn biên dịch HelloWorld.java thì cần phải gọi chương trình này ra. Như sau:

C:\>Java\J2SDK\bin\javac.exe C:\Java\javafiles\HelloWorld.java

+ java.exe : trình thông dịch các chương trình java. VD:

C:\> cd Java\javafiles
C:\Java\javafiles>C:\Java\J2SDK\bin\java.exe HelloWorld


Để cho tiện bạn cập nhật thư mục C:\Java\J2SDK\bin và biết path của windows.

More: