For debugging purposes, I want to figure out which threads of my program are still running. There's seems to be one or more threads that accidentally were not interrupted. Some sort of nice printable format would be a bonus.
|
|
jVisualVM is your friend for this kind of debugging. It's in the /bin directory of your JDK install. Shows all of the threads as a graph view and allows you to drill down into what they're doing. The |
|||||||||||||
|
|
Use 'jps' command line tool to see active java processes and jstack for showing active threads. |
|||
|
|
|
If you're looking for a programmatic solution, something like this (in JDK 1.5 or later) should work:
|
|||||||
|
|
Following nogudnik's answer, tempus-fugit has a programmatic thread dump (and deadlock detection) feature, see http://tempusfugitlibrary.org/documentation/threading/dumps/ |
|||||
|
|
"There's seems to be one or more threads that accidentally were not interrupted". I wound't say things weren't interrupted. Calling Thread.interrupt() doesn't force a runnable to stop. It sets the interrupt flag, and possibly causes blocking operations (like a Thread.sleep or java.nio calls) to throw either an InterruptedException or some other exception (like ClosedByInterruptException for nio). Your runnables have to check Thread.currentThread().isInterrupted() and behave nicely. |
|||
|
|