how to write java program get pid?
|
|
|||||||
|
closed as exact duplicate by Yuval A, Mihai Limbasan, Warrior, paxdiablo, ephemient Apr 15 at 22:36 |
|
|
You can do this using JMX, but beware. The below is not an officially supported mechanism and could change. However, I've used this in the past and it works fine.
will print {pid}@hostname |
||
|
|
|
|
I've tried to solve this (on *nix) starting the java app from a python file and then retrieve the pid from the process:
This approach is absolutely not failsafe, as the comment suggests. But in 100+ runs, I haven't experienced problems. |
||
|
|
|
|
I don't believe this is something Java supplies. For a start, it breaks the platform-independent nature. I can see two ways to approach it, both assuming you're running under a UNIX-type system.
|
||
|
|
|
|
How a Java Application Can Discover its Process ID (PID) Not very straightforward, but apparently there is no "official" way. |
||
|
|
