I am executing a bat file from java (batch file executes another java app) Now, how can i make sure that batch executed and triggered the another java app.
IS there any way to tell that another java app started successfully.
|
I am executing a bat file from java (batch file executes another java app) Now, how can i make sure that batch executed and triggered the another java app. IS there any way to tell that another java app started successfully. |
|||
|
|
I'd suggest running the other application directly from Java and then check the return code. Also, you could run the other application in its own controller thread from your first application. Running one application via another batch file seems like an awkward design... |
|||
|
|
Why using a batch file? For all practical purposes, Anyway, take a look here at how to start external processes and monitoring outputs using Also, you can check out the API. |
|||||
|