Java-Ant集成问题
我使用 SunSPOTS 创建了一个温室监测系统。代码模块是用java编写的。 我面临的问题是我需要使用 ant 命令运行这些程序。我能够通过终端独立完成此操作,但我无法找到构建 GUI 并通过其执行这些模块的方法。
欢迎任何形式的帮助。
谢谢
I have created a Greenhouse Monitoring system using SunSPOTS. The code modules are written in java.
The problem I face is that I need to run these programs using ant commands. Im able to do it through a terminal independently but Im unable to find a way to build a gui and execute these modules through that.
Any kind of help is welcome.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看看这个链接,这可能会有所帮助
http://ant.apache.org/manual/教程-HelloWorldWithAnt.html
http://ant.apache.org/manual/任务/java.html
Take a look at this links this might help
http://ant.apache.org/manual/tutorial-HelloWorldWithAnt.html
http://ant.apache.org/manual/Tasks/java.html
如果我正确理解问题,那么您需要的是一种从 java ui 调用 ant 脚本的方法(可能是某个按钮或链接)。您可以使用 Runtime.exec("cmd ant targetname") 调用 ant 脚本。
If i understand the problem correctly, then what you need is a way to call your ant script from java ui (may be some button or link). You can use Runtime.exec("cmd ant targetname") to call ant script.
您需要提供更多详细信息,什么样的 GUI?基于 Web、Java Swing、Applet ...?请注意,大多数 IDE(Eclipse、NetBeans、IntelliJ ..)都支持 ant,这意味着编写和启动 ant 脚本。什么平台?如果您需要一个独立于平台的机制,也许 Groovy 适合您;因此,使用 Groovy swingbuilder 构建你的 swing gui,并使用 Groovy antbuilder
you need to provide more details, f.e. what kind of GUI ? Web based, Java Swing, Applet ... ? Note that most IDE's (Eclipse, NetBeans,IntelliJ ..) have ant support, means write and start ant scripts. What platform ? If you need a platform independent mechanism maybe Groovy is for you; so f.e. build your swing gui with Groovy swingbuilder and start your ant logic with Groovy antbuilder