vote up 8 vote down star
1

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.

flag

3 Answers

vote up 8 vote down check

There exists no platform-independent way that can be guaranteed to work in all jvm implementations. ManagementFactory.getRuntimeMXBean().getName() looks like the best (closest) solution. It's short, and probably works in every implementation in wide use.

link|flag
vote up 0 vote down

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:

String jps = [JDK HOME] + "\\bin\\jps.exe";
Process p = Runtime.getRuntime().exec(jps);

If run with no options the output should be the process id followed by the name.

link|flag
vote up -2 vote down

The very notion of the process id is platform-dependent. What would you do with this information that isn't also platform-dependent?

link|flag
1  
ah, that's easy. Suppose I have several Java processes which are identical. I receive messages from them. I would like to be able to distinguish them reliably. The PID would be fine, but so would any unique identifier. Now, I could program each process to create a GUID at startup and stash it somewhere but that's a bunch of unnecessary work, isn't it? – tialaramex Aug 11 at 14:18
Maybe rephrase the question: "How do I find a unique ID for a javaprocess"? – jm Sep 23 at 16:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.