How do I get the id of my Java process? I know there are several platform-dependent hacks, but I'm after a generic solution.
|
feedback
|
|
There exists no platform-independent way that can be guaranteed to work in all jvm implementations.
| ||||
|
feedback
|
|
Try Sigar - http://support.hyperic.com/display/SIGAR/Home. GPL, but very extensive APIs. | |||||
feedback
|
|
You can check out my project: JavaSysMon on GitHub. It provides process id and a bunch of other stuff (CPU usage, memory usage) cross-platform (presently Windows, Mac OSX, Linux and Solaris) | ||||
|
feedback
|
|
It depends on where you are looking for the information from. If you are looking for the information from the console you can use the jps command. The command gives output similar to the Unix ps command and comes with the JDK since I believe 1.5 If you are looking from the process the RuntimeMXBean (as said by Wouter Coekaerts) is probably your best choice. The output from getName() on Windows using Sun JDK 1.6 u7 is in the form [PROCESS_ID]@[MACHINE_NAME]. You could however try to execute jps and parse the result from that:
If run with no options the output should be the process id followed by the name. | |||
|
feedback
|
|
You could use JNA. Unfortunately there is no common JNA API to get the current process ID yet, but each platform is pretty simple: WindowsMake sure you have
UnixDeclare:
Then:
| |||
|
feedback
|
|
For older JVM, in linux...
| |||||
feedback
|
|
The following method tries to extract the PID from
Just call | |||
|
feedback
|
|
The latest I have found is that there is a system property called sun.java.launcher.pid that is available at least on linux. My plan is to use that and if it is not found to use the JMX bean. | |||
|
feedback
|