vote up 8 vote down star
1

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.

flag

63% accept rate
I allways use "new Exception().printStackTrace()" as a watch expression when I'm debugging in Eclipse. That's handy when you suspend at a breakpoint and want to know where you came from. – Tim Büthe Jul 1 at 14:07
2  
I wonder why this question got 3 downvotes (4 upvotes). Do you believe there are 'stupid questions'? Should 'stupid questions' be downvoted? – ripper234 Jul 3 at 6:43

6 Answers

vote up 22 vote down check

You can use Thread.currentThread().getStackTrace()

That returns an array of StackTraceElements that represent the current stack trace of a program.

link|flag
1  
StackOverflow makes me lazy :) – ripper234 Jul 1 at 13:17
1  
haha...thanks for asking easy questions!! – jjnguy Jul 1 at 13:17
1  
Wow, 170 rep. You just scored :) – ripper234 Jul 1 at 17:44
Yup, good question! – jjnguy Jul 1 at 18:02
Actually I hit the rep cap today, so I didn't make quite that much I don't think. – jjnguy Jul 1 at 18:02
show 2 more comments
vote up 1 vote down

Silly me, it's Thread.currentThread().getStackTrace();

link|flag
vote up 2 vote down
try {
}
catch(Exception e) {
    StackTraceElement[] traceElements = e.getStackTrace();
    //...
}

or

Thread.currentThread().getStackTrace()
link|flag
Won't your top example only give you the stack trace relative to the try/catch block? – Dan Monego Jul 1 at 14:20
indeedy-o it will – butterchicken Jul 2 at 6:51
vote up 1 vote down

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:

ThreadMXBean bean = ManagementFactory.getThreadMXBean();
ThreadInfo[] infos = dumpAllThreads(true, true);

for (ThreadInfo info : infos) {
  StackTraceElement[] elems = info.getStackTrace();
  // Print out elements, etc.
}

As mentioned, if you only want the stack trace of the current thread it's a lot easier - Just use Thread.currentThread().getStackTrace();

link|flag
vote up 2 vote down
Thread.currentThread().getStackTrace();

is fine if you don't care what the first element of the stack is.

new Throwable().getStackTrace();

will have a defined position for your current method, if that matters.

link|flag
vote up 1 vote down
Thread.currentThread().getStackTrace();

is available since JDK1.5.

For an older version, you can redirect exception.printStackTrace() to a StringWriter() :

StringWriter sw = new StringWriter();
new Throwable("").printStackTrace(new PrintWriter(sw));
String stackTrace = sw.toString();
link|flag

Your Answer

Get an OpenID
or

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