Java-Ant集成问题

发布于 2024-11-06 20:23:13 字数 145 浏览 4 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

揪着可爱 2024-11-13 20:23:13

如果我正确理解问题,那么您需要的是一种从 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.

偏爱自由 2024-11-13 20:23:13

您需要提供更多详细信息,什么样的 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文