| Author |
how to run a .bat file from java program.
|
Neeba Rebbaca
Ranch Hand
Joined: Oct 21, 2008
Posts: 116
|
|
|
A .bat file will be running in the system. If the bat file is not running, i want to run it from my java program. my problem here is how to detect whether the .bat file is runninf or not??
|
 |
Pavan Kumar Dittakavi
Ranch Hand
Joined: Feb 12, 2011
Posts: 95
|
|
Hi,
I Googled and I could fin this method "window.enumerateProcess". Apparently this returns the handles of all currently running processes!..may be you could check on this
Thanks,
Pavan.
|
 |
Henry Wong
author
Sheriff
Joined: Sep 28, 2004
Posts: 16695
|
|
Instead of going to the Windows API, which will require that you go through something like JNI, it may be easier just to use runtime exec, and call the windows "tasklist" command.
Henry
|
Books: Java Threads, 3rd Edition, Jini in a Nutshell, and Java Gems (contributor)
|
 |
 |
|
|
subject: how to run a .bat file from java program.
|
|
|