vote up 1 vote down star

how to write java program get pid?

flag
This is far too vague. Get the pid of what? – unwind Apr 15 at 7:37
Make your question more specific. Otherwise - close++; – Yuval A Apr 15 at 7:43
duplicates of stackoverflow.com/questions/138097/… and stackoverflow.com/questions/35842/… ? – chburd Apr 15 at 8:20

closed as exact duplicate by Yuval A, Mihai Limbasan, Warrior, paxdiablo, ephemient Apr 15 at 22:36

4 Answers

vote up 0 vote down

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.

RuntimeMXBean rmxb = ManagementFactory.getRuntimeMXBean();
System.err.println("pid: " + rmxb.getName());

will print {pid}@hostname

link|flag
vote up 0 vote down

I've tried to solve this (on *nix) starting the java app from a python file and then retrieve the pid from the process:

import subprocess

proc = subprocess.Popen( cmd, shell=True, stdout=subprocess.PIPE )
# naively assuming that no processes have been started between previous line and next line
pid = int(proc.pid)+1

This approach is absolutely not failsafe, as the comment suggests. But in 100+ runs, I haven't experienced problems.

link|flag
vote up 0 vote down

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.

  • provide a JNI which will call getpid() and return it.
  • use system or one of the Runtime methods to run an external program which will call getppid() to get the PID of its parent (i.e., Java), or worse case, walk up the process tree until you find Java itself.
link|flag
vote up 5 vote down

How a Java Application Can Discover its Process ID (PID)

Not very straightforward, but apparently there is no "official" way.

link|flag

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