Printing a stack trace from within a catch is simple:
catch (IOException e) {
e.printStackTrace();
}
But how do I do this anywhere within a method, without having an exception object?
|
Printing a stack trace from within a
But how do I do this anywhere within a method, without having an exception object?
| |||||||
feedback
|
|
Check out this question. The top answer is what you're looking for. | |||
|
feedback
|
|
You can use:
Check http://java.sun.com/javase/6/docs/api/java/lang/Thread.html for more information | |||
|
feedback
|
|
Here's one way to simulate an exception without actually throwing one:
Output:
| |||
|
feedback
|
|
IIRC Dalvik is wired up such that
If that's too much information, you might just want to use a debugger. | |||
|
feedback
|
|
My own answer:
Which works exactly like the single line | |||
|
feedback
|