javac

'javac" is not recognized as an internal or external command, operable program or batch filejdk SE 6 is already installed....but this comes out....did i miss somthing here...HELP!!!
[196 byte] By [biagbusainga] at [2007-10-3 4:34:44]
# 1
Either you installed the JRE instead of the JDK, or you need to set up your system's PATH to the JDK bin directory, or the installation messed up.
atmguya at 2007-7-14 22:38:24 > top of Java-index,Developer Tools,Java Compiler...
# 2
In addition to what atmguy said, set the PATH like so:PATH="C:\Program Files\Java\jdk1.5.0_08\bin\"You will need to adjust it to your own jdk bin directory.
CaptainMorgan08a at 2007-7-14 22:38:24 > top of Java-index,Developer Tools,Java Compiler...
# 3
You should probably set it as follows:PATH = %PATH%;"C:\Program Files\Java\jdk1.5.0_08\bin";This will allow any other Path settings to be retained. Omitting the %PATH% writes the path as ONLY beingC:\Program Files\Java\jdk1.5.0_08\bin\
C_Heeneya at 2007-7-14 22:38:24 > top of Java-index,Developer Tools,Java Compiler...