User Manual for JCreator LE Version 3.5 --------------------------------------- --------------------------------------- First created: Wednesday 12th September 2007, 7:58 PT, AD Last updated: Saturday 21st March 2015, 23:22 PT, AD --------------------------------------------------------- This document is a short and simple instruction manual for JCreator LE version 3.5 for beginners: 1. Click on the Start button on your desktop Start -> Programs -> JCreator LE 2. If the "Tip of the Day" window appears, close it. IMPORTANT: If there are any files open from a previous session, close them: Click on the File menu and select Close All, or Close Workspace or Close Files - whichever is available. Your JCreator window should be blank, apart from the menu and button bars. 3. In the File Wizard window, click on File Type, click on Java File, then click the Next button. In the File Path, type in the name of your java file, e.g. prog_01_01.java and click the location button to browse to the C:\temp folder (or whichever folder you will store your java file), then click the Finish button. 4. Type in your program, or cut and paste the following java program to test your system: // prog_01_01.java /** * @(#)prog_01_01.java * * prog_01_01 application * * @author * @version 1.00 2007/9/9 */ public class prog_01_01 { public static void main(String[] args) { System.out.println("Hello World!"); } } 5. To save the file, click on menu items: File -> Save 6. To compile the program, click on menu items: Build -> Compile File 7. To run the program, click on menu items: Build -> Execute File