//hello.java package hello; public class hello{ public static void main(String s[]){ System.out.PRintln("Hello, Exe file!"); } } 编译java文件,然后打开Jbuilder.config文件,作相应的修改:
在JBuilder.config里面找到下面两行:
# Start JBuilder using the its main class mainclass com.borland.jbuilder.JBuilder 修改为:
# Start JBuilder using the its main class mainclass hello.hello addpath E:/jbuilder5/bin/temp/ addpath命令是把目录加入类路径中,这个命令和其它config里面可以识别的命令可以在JBuilder/bin目录下的config_readme.txt里面找到具体说明。