I want to run a batch file through java program. The batch file itself runs a exe file with some filename as arguments. I tried this by creating a C program and running that exe through java. Is there any other way to run a batch file which itself runs a exe through java. Thanks in advance...
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Hope this will help you. |
||||
|
|
|
You could use As of Java 1.5, you can also use
The API docs for |
||||
|
|
|
To start with playing with the batch file you have to take some time to learn Program:
|
||||
|
|
|
My preferred method of starting any process from within java is to use ProcessBuilder |
|||
|
|