Creating a new Project with EclipseFrom WikiJavabuy this book
Once you installed the eclipse it may be hard the first time to understand what to do. In this tutorial you will find the first steps on using Eclipse
the articleEclipse is a great tool because it makes easy to do everything, from the easiest procedures to the most complex ones, follow these simple steps to create your first java application in Eclipse. Once Eclipse is started:
you should now see in the main window the newly created class file containing the code that was automatically generated by eclipse. It should look like the following: /** * */ package com.wikijava.reflection; /** * <Replace this with a short description of the class.> * * @author Giulio */ public class Reflection { /** * <Replace this with one clearly defined responsibility this method does.> * * @param args * <n.b. for "@param" above <add a description after the field name> * <n.b. for "@return" above <add the return_Type & the description> * <n.b. for "@throws" (i.e. @exception) above, add "If" & description of when it happens> */ public static void main(String[] args) { // TODO Auto-generated method stub } } You are free now to start writing your program. after you wrote your code you can execute it by simply hitting run -> run (or ctrl+F11) and select Java Application from the menu, Eclipse will automatically compile and execute your program.
See Also |
