c**********e 发帖数: 2007 | 1 I installed Java on my computer, but could not find it.
Windows 7. Even search could not find it! Anybody know the reason? |
h*****0 发帖数: 4889 | 2 you installed what?
【在 c**********e 的大作中提到】 : I installed Java on my computer, but could not find it. : Windows 7. Even search could not find it! Anybody know the reason?
|
s***8 发帖数: 1136 | 3 java
check path in a dos window |
c**********e 发帖数: 2007 | 4 "已验证 Java 版本
祝贺您!
您已安装了推荐的 Java 版本 (Version 6 Update 20)。"
But could not find it!
【在 h*****0 的大作中提到】 : you installed what?
|
h*****0 发帖数: 4889 | 5 what r u trying to find?
open cmd, type: |
g*****g 发帖数: 34805 | 6 echo %path%, then check out all of them one by one, java must be in it.
【在 c**********e 的大作中提到】 : "已验证 Java 版本 : 祝贺您! : 您已安装了推荐的 Java 版本 (Version 6 Update 20)。" : But could not find it!
|
u****s 发帖数: 2186 | 7 default it's installed in
\Program Files\Java\jdk1.6.0_20\
unless you changed the install directory
check registry key HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Development Kit
\1.6.0_20\JavaHome
【在 c**********e 的大作中提到】 : I installed Java on my computer, but could not find it. : Windows 7. Even search could not find it! Anybody know the reason?
|
c**********e 发帖数: 2007 | 8 java version "1.6.0_14"
Java(TM) SE Runtime Environment (build 1.6.0_14-b08)
Java Hotspot(TM) 64-Bit Server VM (build 14.0-b16, mixed mode)
【在 h*****0 的大作中提到】 : what r u trying to find? : open cmd, type:
|
h*****0 发帖数: 4889 | 9 so you have it, that's it.
what else do you expect to find?
【在 c**********e 的大作中提到】 : java version "1.6.0_14" : Java(TM) SE Runtime Environment (build 1.6.0_14-b08) : Java Hotspot(TM) 64-Bit Server VM (build 14.0-b16, mixed mode)
|
c**********e 发帖数: 2007 | 10 I have the torch icon. If I open it, it is "Java Control Panel". How to run
a simple java code?
【在 h*****0 的大作中提到】 : so you have it, that's it. : what else do you expect to find?
|
|
|
h*****0 发帖数: 4889 | 11 You still didn't get it.
You probably installed something called "jdk", or "j2se developer's toolkit",
This is a command line toolkit. It's not a texteditor.
1. Try to locate your java installation directory. It's
somewhere like "c:\program files\java....". You can find a "bin"
directory, and inside it you should be able to find "javac.exe"
2. Use any texteditor to type in your source code.
3. Compile your source code using "javac.exe"
4. run your code using "java.exe", which is by default alrea
【在 c**********e 的大作中提到】 : I have the torch icon. If I open it, it is "Java Control Panel". How to run : a simple java code?
|
b***i 发帖数: 3043 | 12 you installed java run time environment, which runs java byte code. For
example, if a web page contains java code, you can see it now.
To write java software, you have to install an IDE with java compiler, such
as Eclipse.
【在 c**********e 的大作中提到】 : I installed Java on my computer, but could not find it. : Windows 7. Even search could not find it! Anybody know the reason?
|
h*****0 发帖数: 4889 | 13 you don't necessarily need to install an IDE. especially for a beginner.
Actually eclipse is 'poisonous' for beginners. Just installk JDK, and use
something like ultraedit.
after you know what is 'java' and would never ask questions like
"where is my java", then you could think about which IDE you wanna
use.
such
【在 b***i 的大作中提到】 : you installed java run time environment, which runs java byte code. For : example, if a web page contains java code, you can see it now. : To write java software, you have to install an IDE with java compiler, such : as Eclipse.
|
n***d 发帖数: 8857 | 14 install netbeans
【在 c**********e 的大作中提到】 : I have the torch icon. If I open it, it is "Java Control Panel". How to run : a simple java code?
|
t******h 发帖数: 120 | 15 install netbeans
it has got everything ready for you to begin java programming.
a good choice for beginners. |