怎么配置uedit使能编译、运行java程序?(50分)

  • 主题发起人 主题发起人 WorldCreater
  • 开始时间 开始时间
W

WorldCreater

Unregistered / Unconfirmed
GUEST, unregistred user!
怎么配置uedit使能编译、运行java程序?
怎么配置uedit使得能用tc编译、 连接、运行c程序,就象tc的ide环境那样
 
impossible!!
 
如下表所示,在Command Line输入要执行的程序名,在Menu Item Name加入选项名啦
Command Line Menu Item Name Command Output
D:/jdk1.2.2/bin/javac "%f" Compile 选"Output To List Box"和
"Capture Output"
d:/jdk1.2.2/bin/java "%n" Run application 选"Output To List Box"和
"Capture Output"
d:.... /appletviewer "%n%e" run applet ...
如以上就可以了
 
Wdragon:
  要让它编译后自动运行怎么办?
 还有多少命令行编译选项?哪可以找到详细说明?
 
用ant撒,java的make工具
遍一个build.xml文件,
再使用uedit的commandline功能,在目录下运行ant.bat即可

在build.xml可以加入运行任务,并且设为默认任务
则每次运行ant.bat就先编译,再运行,很爽
不过uedit没有debug功能
找个jcreator的破解搬就全搞定
或者使用gel,gnu的软件,3m大,java的ide
http://www.gexperts.com/download.html

 
ant怎么使用?
 
http://www.huihoo.com/java/hello-ant/index.html
 
建立一个build.xml文档
每次运行 ant,ant就根据build.xml的内容启动编译器和其他工具
http://www.huihoo.com/java/hello-ant/index.html有教程
 
多人接受答案了。
 
后退
顶部