新建 HelloWorld Class 选择“File→New→Class”,在“New Java Class”向导中的Name框中输入“HelloWorldApp”,并且在“public static void main(String[] args)”选项前面打上勾。填写Source floder,选择上一步新建的项目,一般情况eclipse会自动补全,这里即为:HelloWorld/src。 可以注意到,在窗口会出现一个提示“The use of the default package is discouraged.”,即:由于项目简单,不需要用到package。这里忽略即可。按下“Finish”按钮。Hello World! 程序框架代码已经自动生成。即为Eclipse的代码生成(Code Generation)特性。
添加显示语句 在publicstaticvoidmain(String[] args) {}中添加显示语句: System.out.println("Hello World! This is my First java application~");
Run Java Application 在Eclipse中导航条中点击Run运行这个程序,查看执行结果。 按下“Run→Run As”,Eclipse会弹出运行设置向导,询问运行配置。这个程序是一个Java Application,所以在Configurations里面选择“Java Application”,然后按下“New”按钮。当Eclipse创建好配置以后,你只需要按下Run便能够看到结果了。