How do I find where java is downloaded on a windows 7 computer [duplicate]

不打扰是莪最后的温柔 提交于 2019-12-13 05:01:45

问题


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'.


回答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!



回答2:


  1. Go to "Control Panel"->"Java"
  2. Select "Java" Tab
  3. Click on "view"
  4. You will see your installed Java version with path


来源:https://stackoverflow.com/questions/24174906/how-do-i-find-where-java-is-downloaded-on-a-windows-7-computer

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!