Something like Environment.StackTrace in .Net.
BTW, Thread.dumpStack() is not what I want - I want to get the stacktrace back, not print it out.
|
Something like BTW, |
|||||||||||||||||||||
|
|
You can use That returns an array of |
|||||||||||||||||||
|
is fine if you don't care what the first element of the stack is.
will have a defined position for your current method, if that matters. |
|||||
|
|
||||
|
|
is available since JDK1.5. For an older version, you can redirect
|
||||
|
|
|
To get the stack trace of all threads you can either use the jstack utility, JConsole or send a kill -quit signal (on a Posix operating system). However, if you want to do this programmatically you could try using ThreadMXBean:
As mentioned, if you only want the stack trace of the current thread it's a lot easier - Just use |
|||||||
|
|
You can use apache's commons for that:
|
|||||||
|
or
|
|||||
|
|
I have a utility method that returns a string with the stacktrace:
And just logit like...
|
|||
|
|
|
A far easier way is to use this:
|
|||||||
|