I need to start a jar file with a *.bat file so that after it executes it detaches from the terminal window (command prompt). Is this possible? If so, how?
Thanks!
|
I need to start a jar file with a *.bat file so that after it executes it detaches from the terminal window (command prompt). Is this possible? If so, how? Thanks! |
|||
|
|
|
java.exe will always display a terminal window, you need to use javaw.exe instead:
|
|||
|
start /B java -jar myjarfile.jar |
|||||||||||
|