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?

link|improve this question

simply throw an exception and you can print stack trace the same way – mauris Jun 2 '11 at 3:26
@thephpdeveloper I am actually trying right now "faking" an exception without throwing it. I will report how it went. – Regex Rookie Jun 2 '11 at 3:28
possible duplicate of Get current stack trace in Java – mauris Jun 2 '11 at 3:43
feedback

5 Answers

up vote 3 down vote accepted

Check out this question. The top answer is what you're looking for.

link|improve this answer
Accept + 1. – Regex Rookie Jun 2 '11 at 3:36
feedback

You can use: Thread.getCurrentThread().getStackTrace().

Check http://java.sun.com/javase/6/docs/api/java/lang/Thread.html for more information

link|improve this answer
feedback

Here's one way to simulate an exception without actually throwing one:

public class Test {

   public static void main(String [] args) {
      a(1);
   }

   public static void a(int arg) {
      b(arg);
   }

   public static void b(int arg) {
      Throwable t = new Throwable();
      t.printStackTrace();
   }

}

Output:

java.lang.Throwable
    at Test.b(Test.java:12)
    at Test.a(Test.java:8)
    at Test.main(Test.java:4)
link|improve this answer
feedback

IIRC Dalvik is wired up such that Runtime#traceMethodCalls(true) will send method calls to the trace file.

Enables/Disables tracing of method calls. If the boolean argument is true, this method suggests that the Java virtual machine emit debugging information for each method in the virtual machine as it is called. The format of this information, and the file or other output stream to which it is emitted, depends on the host environment. The virtual machine may ignore this request if it does not support this feature. Calling this method with argument false suggests that the virtual machine cease emitting per-call debugging information.

If that's too much information, you might just want to use a debugger.

link|improve this answer
feedback

My own answer:

final Throwable throwable = new IllegalArgumentException("Blah");
throwable.printStackTrace();

Which works exactly like the single line Thread.dumpStack() pointed out by @uncollected.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.