2
votes
How do I create a thread dump of a Java Web Start application
Since 1.5 you can use Thread.getAllStackTraces() to get a Map to iterate over.
The ideal output would be that produced from Ctrl-\ (or Ctrl-Break or similar), but …
