>"Au, Tat/ATL" <[EMAIL PROTECTED]> wrote: >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. Don't forget you have to set the PATH and CLASSPATH. There is no IDE like InterDev. You have to use the command line interface (DOS window). Write your programs with a text editor and save them with a .java extension. Go to the DOS window and cd into the directory where your .java file is then compile it into byte code with javac. ex: javac YourJavaProgram.java This will create the class file(s). ex: YourJavaProgram.class Then run it. ex: java YourJavaProgram Of course, this is only for an application. You'll need to read up on the differences between applets, applications, servlets, jsp, and beans. >In addition, what would I use if I want to create JSP for web >application, You need to download Tomcat or the JSWDK, plus the docs. You might want to look at J2EE. The J2EE is designed to facilitate the development of web applications, or distributed applications. >and what would I use if I want to write JAVA OO >programs. Use the first procedure that I described above. >Would it work with IIS or do I need Apache? Sorry, can't help you with IIS. You can use Apache, but you need the Apache JServ API. You can also download Sun's Java Web Server (evaluation). Have Fun! Todd Datasoft Corp. Enterprise Integration http://www.datasoft.com 800-759-8352 pin #1088329 ____________________________________________________________________ Get free email and a permanent address at http://www.netaddress.com/?N=1 =========================================================================== 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
