Hi. I just did a few things for my pimpscape source and when i was done i checked to see if anything happened..and it didnt. so when i clik compile i press any key and it automaticly goes away hrees what it ses. 'javac' is not recognized as an internal or external command, operable program or batch file. Press any key to continue . . . i press a key and it just goes away and helps nothing plz help
By the sounds of it it seems you must have edited some of the source code wrong, as the file is now trying to launch a non exsistent process/application. Go back and check what you changed. If you have an oringal copy of the source, cross reference it against that.
Your PATH env.var. does not include the path to javac.exe You can either explicitly name javac.exe C:\foo\bar\> C:\j2sdk1.4.2_01\bin\javac Filename.java or add the path and just use javac C:\foo\bar\> set PATH=%PATH%;C:\j2sdk1.4.2_01\bin C:\foo\bar\> javac Filename.java Replace C:\j2sdk1.whatever\it\is. with the actual path to bin\javac.exe
Courtesy of a fellow psychopath who was too shy to post ;D http://forums.afterdawn.com/thread_view.cfm/8/351570