JAVAC.exe file skipped after installing Java7 in Windows7 (64 bit)

I recently installed JAVA7 on my 64-bit Windows 7 laptop. After that, Java is not working properly and I cannot find

JAVAC.exe in C: \ Program Files \ Java \ jre7 \ bin.

I uninstalled and installed 3-4 times, but didn’t use it. Please help me.

thanks

+4
source share
2 answers

Since your title is talking about javac, I assume that you are trying to install Java to compile programs, you can get the latest developer kit from Oracle here .

javac is under jdk ( version ) where. In your case above, since you are on x64 Windows (and assuming that you are using the one I'm connected to), you can install the kit and add the following path:

C:\Program Files\Java\jdk1.7.0_25\bin

+4
source

I just checked it out. They do not talk about the JRE folder, they say C: / program files /java/JDKx.xx-45/bin I made a mistake looking in C: / program files / java / JDKx.xx-45 / JRE / bin

+1
source

Source: https://habr.com/ru/post/1488148/


All Articles