What's the easiest way to print a stacktrace from a debugging printout? Often during testing you would like to know the callstack leading up to the situation provoking a debug message.
|
|
|
||||
|
|
|
Just because I needed it myself: As inspired by answer http://stackoverflow.com/questions/421280/in-java-how-do-i-find-the-caller-of-a-method-using-stacktrace-or-reflection , you can retrieve the call stack using
Then you process and print/log whatever you are interested in. More work than using |
||
|
|
|
|
if your using log4j
will print the stacktrace to your log. |
||
|
|
|
If you want to save the stack trace into a String you can do this;
Where e is, obviously, an exception. Besides, it sounds very weird to autogenerate an own Exception just to find get a stack trace for a debug. Get Eclipse and use it's debug mode, it's really awesome. |
||
|
|
As well as what @jjnguy said, if you don't have an exception, you can also call Thread.getStackTrace(). |
||
|
|
|
|
Just creating an arbitrary exception does the trick for me:
|
||||||||||
|
|
|
You cannot just do an exception.ToString() like in .NET and get everything? |
||||
|
|
|
You should be catching the exception in a try-catch block.
That returns StackTraceElement[] that you can then interpret. Also:
will...print the stacktrace. |
||
|
|
