Difference between revisions of "Hello World in Eclipse"
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | See [[Hello Web with Tomcat]] when you have completed this. | ||
==Download Eclipse== | ==Download Eclipse== | ||
[[Image:Eclipse_Download_Screenshot.png|Pick the EE (Enterprise Edition)|thumb]] | [[Image:Eclipse_Download_Screenshot.png|Pick the EE (Enterprise Edition)|thumb]] | ||
Line 49: | Line 50: | ||
[[Image:Eclipse_Hello.png|Change main|thumb]] | [[Image:Eclipse_Hello.png|Change main|thumb]] | ||
*Replace the TODO comment line with: | *Replace the TODO comment line with: | ||
− | + | System.out.println(42); | |
− | * | + | *Click the green Run button to make it go. |
**You can also use: '''Ctrl F11''' | **You can also use: '''Ctrl F11''' | ||
+ | <br clear=all> | ||
+ | ==Preferences== | ||
+ | [[Image:Eclipse_preferences.png|Pick your font|thumb]] | ||
+ | *There are an overwhelming number of preferences. | ||
+ | *Select your favourite font from | ||
+ | **Window/Preferences/General/Appearance/Colors and Fonts/Basic/Text Font | ||
+ | *Variable width fonts work fine too. |
Latest revision as of 15:00, 19 November 2013
See Hello Web with Tomcat when you have completed this.
Contents
Download Eclipse
- http://eclipse.org/download - you need the JEE version for your operating system
- Choose the Eclipse IDE for Java EE Developers
Unzip and make a shortcut
- There is no install - simply unzip it to a convenient locations (for example c:\)
- You can start by double clicking eclipse.exe
- You can make a shortcut on your desktop
Welcome Screen
- Accept the default workspace and move on
- The welcome screen can be closed - you will not need it again
New project
- You want to start with a Java Project
- A project can include many classes and other things
- File / New / Project...
- You want to start a Java Project
New Project Wizard
- Set the Project Name to FirstProject (Use a capital for the first letter)
- Pick Java Project to start with
- Call your project FirstProject and check that you have at least 1.5 as the Execution Environment.
- Note that 1.5 is often referred to as 5; similarly 1.7 is version 7.
- The big changes happened at 1.5
- You can just accept the defaults regarding file locations and perspectives.
Java Perspective
- You are now looking at the Java perspective – this is the arrangement of panes.
- You are going to see this window a lot.
- Your project files are listed in the Package Explorer on the left hand side
Java Perspective
- File/New/Class
- Call your class Hello use a capital H.
- Tick public static void main…
- You don’t want the other options
System.out.println
- Replace the TODO comment line with:
System.out.println(42);
- Click the green Run button to make it go.
- You can also use: Ctrl F11
Preferences
- There are an overwhelming number of preferences.
- Select your favourite font from
- Window/Preferences/General/Appearance/Colors and Fonts/Basic/Text Font
- Variable width fonts work fine too.