I am Wondering how to find where java has downloaded on my windows 7 computer. I need to find it so I can make a 'JAVA_HOME'.
Asked
Active
Viewed 305 times
0
-
Look in `Program Files\Java` or `Program Files (x86)\Java` for the default installation location – MadProgrammer Jun 12 '14 at 00:53
-
@user3478462-Kindly mark the answer as accepted if satisfied with my answer! – Am_I_Helpful Jun 12 '14 at 01:12
2 Answers
1
Go to this location,if it exists,in your Windows 7 PC :-
C:\Program Files\Java\jdk1.8.0\bin\javac.exe // 64 bit system compatible JDK
OR
C:\Program Files(x86)\Java\jdk1.8.0\bin\javac.exe //32 bit system comaptible JDK
If this location shows you the "javac.exe" application, then JDK has been successfully installed in your system. And, you can set up your environment variable to point to the JDK location as
'JAVA_HOME'=C:\Program Files\Java\jdk1.8.0 // as shown in my system!

Am_I_Helpful
- 18,735
- 7
- 49
- 73
0
- Go to "Control Panel"->"Java"
- Select "Java" Tab
- Click on "view"
- You will see your installed Java version with path

AY.HK
- 1
- 2