new to java

how do i just use the j2sdk without using netbeans?
[58 byte] By [kevinbassa] at [2007-10-1 1:33:44]
# 1
http://java.sun.com/docs/books/tutorial/index.html
pgeuensa at 2007-7-8 1:54:05 > top of Java-index,Security,Event Handling...
# 2
notepad
wbrackena at 2007-7-8 1:54:05 > top of Java-index,Security,Event Handling...
# 3
> notepador move a little ahead to TextPad (saves some trouble with syntax highlighting and stuff)
annie79a at 2007-7-8 1:54:05 > top of Java-index,Security,Event Handling...
# 4

If Windows, find the directory where java.exe and javac.exe are and make sure this directory is in your PATH. Also make sure that the directory that contains the source code files that you are working on is in your CLASSPATH. (Various forum threads explain how to do the PATH and CLASSPATH things.)

Use Notepad to edit your source files. If you are working on myjavafile.java, then compile it by typing "javac myjavafile.java" and run it by typing "java myjavafile"

Hope this helps.

martinestradaa at 2007-7-8 1:54:05 > top of Java-index,Security,Event Handling...
# 5
FYI: Almost EVERYONE I know uses and LOVES Eclipse. If you're interested, check out www.Eclipse.org
wbrackena at 2007-7-8 1:54:05 > top of Java-index,Security,Event Handling...
# 6
oh yeah, sorry, did I mention it's FREE!!!
wbrackena at 2007-7-8 1:54:05 > top of Java-index,Security,Event Handling...