Posted on 2006-02-17 08:57
fortune 阅读(829)
评论(2) 编辑 收藏 所属分类:
java技术
假设eclipse目录为d:\eclipse已经建好一个名为MyProject的工程,下面将介绍如何为该工程设置正确的环境以使用JFace/SWT开发GUI程序。
1.为SWT创建类路径变量。在Eclipse中右键选中MyProject,选择Properties,选择左侧的Java Build Path,选择Libraries,点击Add Variable,来添加各种变量,用它们来表示编译时所需的各个库(*.jar)。继续Configure Variables,然后点击New按钮,添加路径变量,name:SWT_LIB,file:d:/eclipse/plugins/org.eclipse.swt.win32.win32.x86_3.1.0.jar。
2.用上面相同的方法,创建JFACE_LIB变量,name: JFACE_LIB,file: d:/eclipse/plugins/org.eclipse.jface_3.1.0.jar;创建BOOT_LIB变量,name: BOOT_LIB,file: d:/eclipse/plugins/org.eclipse.core.boot_3.0.0.jar;创建RUNTIME_LIB变量,name: RUNTIME_LIB,file: d:/eclipse/plugins/org.eclipse.core.runtime_3.1.0.jar;创建WORKBENCH_LIB变量,name: WORKBENCH_LIB,file: d:/eclipse/plugins/org.eclipse.ui.workbench_3.1.0.jar。
3.在Properties/Java Build Path/Libraries中点击Add Variable,选中刚才添加的几个变量,加入到工程中。
4.解压d:/eclipse/plugins/org.eclipse.swt.win32.win32.x86_3.1.0.jar,将其中的swt-win32-3135.dll拷贝到$PATH环境变量指向的目录。