I've started a process with following code
ProcessBuilder pb = new ProcessBuilder("cmd", "/c", "path");
try {
Process p = pb.start();
}
catch (IOException ex) {}
Now I need to know the process's pid that I've just started.
|
I've started a process with following code
Now I need to know the process's pid that I've just started. |
|||||||||||||||
|
|
There is no public API for this yet. see Sun Bug 1, Sun Bug 2 As a workaround:
returns an Object of type
The Process class is abstract, and what you get back is some subclass of Process which is designed for your operation system. For example on Macs, it returns |
|||
|
|
|
This page has the HOWTO: http://www.golesny.de/p/code/javagetpid On Windows:
Returns an instance of "java.lang.Win32Process") OR "java.lang.ProcessImpl" Both have a private field "handle". This is an OS handle for the process. You will have to use this + Win32 API to query PID. That page has details on how to do that. |
|||
|
|
|
As recommended here, I tried java.lang.management.ManagementFactory
returns a string similar to 11639@myMachineName where 11639 is the ID of the current process. Tested on Windows XP and Linux version 2.6.16.46. |
|||||
|
|
I think I have found out a solution, that looks quite bulletproof while working on most platforms. Here is the idea:
Since you check only for child processes, you cannot be wronged by some other process in the same machine. JVM-wide mutex than allows you to be sure, that the new process is the correct one. Reading child process list is simpler than getting PID from process objects, because it does not require WIN API calls on windows, and, more importantly, it has been done already in several libs. Below is an implementation of the above idea using JavaSysMon library. It
|
|||
|
|
|
There isn't a simple solution. The way I've done it in the past is to start another process to run either the |
|||
|
|