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

link|improve this question
feedback

3 Answers

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.

link|improve this answer
This will work on windows, perhaps @Garima should tell us which platform is working on. – stivlo May 12 '11 at 5:43
I used the following code but it gives the error. Runtime rt = Runtime.getRuntime(); rt.exec(cmd ant build_new); Multiple markers at this line - Syntax error on token "ant", . expected – Manikandan Jun 18 '11 at 10:21
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.