I'm writing a class in Java which will be calling a Windows batch file. When I run this class, the batch file is getting opened and getting closed. How can I make the batch file continue to run after the Java program terminates?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You are probably calling the batch with |
|||
|
|
|
See this article for how to use Runtime.exec properly. You probably need to start a new command line window:
|
|||
|
|