Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to the Java application and having trouble compiling a simple Helloworld program.

JDK 1.7.0 is installed in my Windows 7 and was able to set the path variable but didn't work, so I tried something but still keeps on giving me the same error. In my cmd it says this:

C:\Users\Ivy>cd \

C:\cd java files

C:\java files>set path=C:Program Files (x86)\Java\jdk1.7.0\bin

C:\java files>javac Hello.java
'javac' is not recognized as an internal or external command, operable program or batch file.
share|improve this question
3  
i think your path is not set . go to your enviromentvariable and set path their – Ron Oct 10 '11 at 6:03

6 Answers

  1. Check your "javac" path on Windows using Windows Explorer "C:\Program Files\Java\jdk1.7.0_02\bin" and copy the address.

  2. Go to Control Panel..."Environment Variables" and "Insert" the address at the beginning of var. "Path" followed by semicolon. i.e "C:\Program Files\Java\jdk1.7.0_02\bin;" . Do not delete the path existent, just click in and go to the left end and past the line above. Do not try anything else, because you just need to link your code to "javac.exe" and you just need to locate it.

3.close your command prompt and reopen it,and write the code for compile and execution.

share|improve this answer
1  
This worked for me, but before I had tried to add the location at the end of the Path string. Why does it only work at the beginning? – Eric H. Apr 10 at 22:05

Correct the path - you missed a backslash after C:

C:\java files>set path=C:\Program Files (x86)\Java\jdk1.7.0\bin
share|improve this answer
1  
I missed that right but that was my typographical error when posting my concern here. I did check it and everything is correctly spelled but still gives me the same error. – user987137 Oct 12 '11 at 3:19
@user987137. Evidently, something is incorrect. Is JDK (mind you - JDK not JRE) installed in the specified location - C:\Program Files (x86)\Java\jdk1.7.0? If so, what happens if you do cd C:\Program Files (x86)\Java\jdk1.7.0\bin and then javac -version? – Raghuram Oct 12 '11 at 5:06
1  
I had the same error when setting up JDK on Win XP even though I had the correct path set. Simply closing the command prompt and opening it again fixed it. – Chris J Jan 22 '12 at 12:29

If java command is working and getting problem with javac. then first check in jdk's bin directory javac.exe file is there or not. If javac.exe file is exist then set JAVA_HOME as System variable.

share|improve this answer

try this.. I had it too but now it solved in XP..

C:\ YourFolder >set path=C:\Program Files\Java\jdk1.7.0_09\bin;
C:\ YourFolder >javac YourCode.java

^^.. happy coding..

and accept the answer when it does.. ^^

share|improve this answer

Check your environment variables.

In my case I had JAVA_HOME set in the System variables as well as in my User Account variables and the latter was set to a wrong version of Java. I also had the same problem with the Path variable.

After deleting JAVA_HOME from my User Account variables and removing the wrong path from the Path variable it worked correctly.

share|improve this answer

after editing path variable, make sure you press ok before exiting environment variables window and rerun command prompt...im sure it will work

share|improve this answer

protected by Community Feb 24 at 7:36

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.