How do I open it?

Hey guys :) I just downloaded The J2SE TM Development Kit 5.0 (JDK TM 5.0) from the Java website. Is this the right one for programming? If not, which one is? If this is the right one for programming how do I actually open up Java and start programming? Thanks for your help!-Ghost
[295 byte] By [CyripticGhosta] at [2007-10-2 20:12:41]
# 1

> I just downloaded The J2SE Development Kit 5.0 (JDK TM 5.0) from the Java website.

> Is this the right one for programming?

It allows you to compile your Java source files.

> If this is the right one for programming how do I actually open up Java and start programming?

Bottom left corner of your desktop.

Start -> Run -> [ notepad ]

start typing

tschodta at 2007-7-13 22:54:43 > top of Java-index,Java Essentials,New To Java...
# 2
There are many tutorials for begginers like "my first cup of java". Check them out!
BIJ001a at 2007-7-13 22:54:43 > top of Java-index,Java Essentials,New To Java...
# 3

It is the right one for programming but the JDK does not contain a full blown IDE in the regular download (you can download a version including netBeans as well.

Apart from your advanced editing needs, the JDK contains what you need to develop and run Java applications. You will mainly need javac (to compile .java files into .class files) and java (to run those .class files).

I recommend you to read at least this:

http://java.sun.com/j2se/1.5.0/docs/tooldocs/index.html

Lokoa at 2007-7-13 22:54:43 > top of Java-index,Java Essentials,New To Java...
# 4
Oh, so I just type in Notepad? Then Java compiles it or something? Okay, well I'll read the tutorials =P
CyripticGhosta at 2007-7-13 22:54:43 > top of Java-index,Java Essentials,New To Java...
# 5

While you are finding out how it all works, like trying HelloWorld and slightly more complex samples, yes it is generally recommended not to use an IDE yet so that you get familiar with issues like classpath.

Once you get how the basic toolset works, you can and should use a more advanced IDE like NetBeans, Eclipse, ...

Lokoa at 2007-7-13 22:54:43 > top of Java-index,Java Essentials,New To Java...
# 6
Thanks for the help guys!
CyripticGhosta at 2007-7-13 22:54:43 > top of Java-index,Java Essentials,New To Java...