(albertyi原创)Eclipse 安装,调试快速入门

类别:Java 点击:0 评论:0 推荐:

                               (albertyi原创)Eclipse 安装,调试快速入门

最近一直用UltraEdit和gmake来做java程序,感觉确实很轻省,但是常常怀念VC强大的程序编辑,调试功能。。。

遂决定找一个强大的IDE环境,经过分析网上N个帖子,我的目标逐渐锁定了Eclipse;

安装非常简单,从网上下载了最新的Eclipse3.1.0以及最新的j2sdk1.4.2.

一、安装步骤如下:

1、卸载机器上老版本的JDK

2、安装最新的JDK1.4.2,安装好之后需要配置环境变量JAVA_HOME,path,classpath.

(注意:必须要把JDK1.4.2的路径设置再最前面,不然Eclipse启动会报错,“need jdk 1.4.1, available jdk1.2.1”,这个是因为我的机器上装了oracle,而oracle自带的jdk版本低,且他在环境变量中的位置比刚才安装的jdk1.4.2的位置前"。)

环境变量验证方法:

在cmd中输入path就能看到整体的位置

example:

C:\>path
PATH=f:\oracle\ora92\bin;C:\j2sdk1.4.2\bin.;C:\j2sdk1.4.2\lib.;C:\Program Files\Oracle\jre\1.3.1\bin;

上面这样的path设置就是正常的,没有问题,可以见到oracle自带的jdk放在jdk1.4.2的后面。

3、解压下载的的Eclipse3.1.0的压缩包,即可运行。

二、强大的调试功能:

1、首先建立一个简单的helloworld类用于调试测试。

package simple;
//

public class helloworld {

 /**
  * @param args
  * @author albertyi
  * @param String[] args
  */
 public static void main(String[] args) {
  System.out.println("enter  main!");
  test1();
  test2();
  test3();
  System.out.println("exit  main!");
 }
 
 public static void test1(){
  System.out.println("enter  test1!");
  System.out.println("exit  test1!");
 }
 
 public static void test2(){
  System.out.println("enter  test2!");
  System.out.println("exit  test2!");
 }
 
 public static void test3(){
  System.out.println("enter  test3!");
  System.out.println("exit  test3!");
 }
}

2、选择,菜单window->Open perspective->other->debug,把整体视图切换到debug模式下

3、Ctrl+Shift+B在需要调试的地方加入一个断点

4、选择菜单 Run->Debug as-> java application

5、F6是单步向下(Step Over),F5是单步进入(Step into)

6、在Console窗口中能看到运行的结果

enter  main!
enter  test1!
exit  test1!
enter  test2!
exit  test2!
enter  test3!
exit  test3!
exit  main!

是不是很简单就能向VC一样调试了^_^

本文地址:http://com.8s8s.com/it/it10311.htm