>                 Hello everyone,
>
>                 Can anyone help me on finding information on how to use
the
> JAVA tools?  I downloaded JDK 1.2.2 (Standard Edition) and installed on my
> NT machine.  However, I don't see the Normal development environment like
> you see in Visual InterDev.  I don't know where to start.

One of the beauties of Java is that you don't need much to get started.
Basically, you can write your java source code in any editor (create a
*.java) file, and compile it to a class file using "javac" (java compiler),
which you will find in the "bin" directory of the JDK. You can run your
program using the Java Virtual Machine, "java", also in the "bin" directory.

e.g.   write "MyProgram.java"
javac MyProgram.java  --> outputs "MyProgram.class"
java MyProgram   --> runs your class file

You can also easily turn your program into a Java Applet and run it in a
web-browser.

There is loads of on-line material and books on getting started with Java,
so with a bit of reading, you should be up and running in no time.

> In addition, what
> would I use if I want to create JSP for web application, and what would I
> use if I want to write JAVA OO programs.  Would it work with IIS or do I
> need Apache?
>
>                 Thank you for your help in advance.
>                 Tat

If you want to write JSP and Java Servlets you need the JSDK (Java Servlet
Development kit) - from Sun, a JSP engine, such as GnuJSP (available from
Gnu), and a Serlvet engine for your web-server. Popular ones are JRun
(www.allaire.com) with IIS, or Apache JServ (www.apache.org/jserv) . All
this stuff is free.

You'll get lots of information on setting these up from this mail list!

HTH

John Wheeler.

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to