I have JRE 6 in my PC (Windows XP) but when I compile a program in the command prompt it shows javac is not recognised as internal or external command. Which software is needed to compile a Java program?
|
|
You need to download and install a JDK, not a JRE. As a (very rough) explanation, the JRE contains just the Java Virtual Machine, whereas the JDK contains not only the JRE but also the compiler ( See also:
|
|||||||
|
|
I suggest you run through the steps of the Hello World! Tutorial. As per the instructions:
|
||||
|
|
|
JRE stands for Java Runtime Environment. It allows you to run already compiled java programs. To compile your own programs, you need JDK which stands for Java Development Kit. You can download it at JDK Downloads Page. |
|||
|
|
|
You need to install JDK-6 (Java Development Kit) which contains javac Java compiler. JRE does not contain it. |
|||
|
|
|
Instead of a simple JRE, you'll need a full JDK. As an example, youc an download sun one here : http://www.oracle.com/technetwork/java/javase/downloads/index.html#need (and don't forget to select "download JDK"). |
|||||
|
|
|
JDK is needed to develop applications whereas JRE is enough to run applications. In other words JRE is enough to run a application (i.e) it includes java.exe and doesnot contain javac.exe JDK contains both java.exe and javac.exe There are also other chances that you dint set your class path properly. |
|||
|
|

