How can I discover the current process ID from Java?
Created May 4, 2012
John Zukowski [When analyzing logs that our Java servlet creates, it would be nice
to be able to determine the process
id of the underlying Java process
that was running at the time. In
most operating systems every thread
has an associated process with a
unique id. Is there no way to get
this information from Java?]
Yes, there is no way to get this information from Java (without JNI).