Is it possible to call Ant or NSIS scripts programmatically from Java code at runtime? If so, how?
|
|
You can call ant scripts from Java code. See this article (scroll down to the "Running Ant via Java" section) and this article:
Update I tried with the following ant file , it did not "tell" anything (no console output), but it worked: the file was indeed moved
And when I try it again (when there is no I think this is what you would expect when you run something from Java. If you want the console output of the ant tasks, you might want to add a Logger as a build listener. From @Perception's answer below.
|
|||||||||||||
|
|
Too expand on Nivas' answer - his solution is correct, you are not seeing output from your program because you haven't attached any loggers to your project.
This is just basic setup, theres alot more you can do with the Ant Java API. |
|||
|
|
|
Yes, and Nivas gave the most specific answer and probably the best answer too, but call me old fashioned, I still prefer just doing:
where command is a String with your ant commands or a shell script to your ant commands;
* self edited for preachiness |
|||
|
|
user804965's solution is one I've implemented before. I had to run some terminal commands from Java, and used the Process and Runtime Java objects. The same idea can be applied to running ant commands. For example:
This will run a script file from Java and print the output to the console. Inside script.sh you can do something along the lines of...
Or call whatever ant script you need to call (ant clean, for example). You can also likely do this without having the additional sh file, and just call the terminal command from Java. I have not tried this approach though. |
|||
|
|