Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
23  
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 '09 at 14:07
8  
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 '09 at 6:43
3  
ripper234 is right. There are no stupid questions. – luiscolorado Nov 30 '10 at 18:04
8  
Downvotes are not for dumb questions, they are for questions that don't show that OP did their research before posting, or that are unclear, or that aren't answerable. However, this seems like a great question. – Juan Mendes Sep 3 '11 at 0:06
1  
@JuanMendes "Downvotes are not for dump questions..." unless you define dumb question as "questions that show that the OP did not research, unclear, or aren't answerable". – Limited Atonement Sep 20 '12 at 14:36
show 1 more comment

10 Answers

up vote 299 down vote accepted
+500

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

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

share|improve this answer
104  
StackOverflow makes me lazy :) – ripper234 Jul 1 '09 at 13:17
11  
haha...thanks for asking easy questions!! – jjnguy Jul 1 '09 at 13:17
2  
Wow, 170 rep. You just scored :) – ripper234 Jul 1 '09 at 17:44
1  
Yup, good question! – jjnguy Jul 1 '09 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 '09 at 18:02
show 2 more comments
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.

share|improve this answer
5  
(new Throwable()).getStackTrace() is faster executing too (see bugs.sun.com/bugdatabase/view_bug.do?bug_id=6375302 ) – MightyE Aug 1 '12 at 20:38
for (StackTraceElement ste : Thread.currentThread().getStackTrace()) {
    System.out.println(ste);
}
share|improve this answer
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();
share|improve this answer

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 = bean.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();

share|improve this answer
1  
The code snippet in this answer comes nearest to programmatically generating the kind of dump you see on sending the JVM the QUIT signal (on Unix like systems) or <ctrl><break> on Windows. Unlike the other answers you get to see monitors and synchronizers as well as just the stack traces (e.g. if you iterate over the StackTraceElement array and do System.err.println(elems[i]) on each). The second line in the snippet is missing bean. before the dumpAllThreads but I guess most people could work that out. – George Hawkins May 19 '11 at 8:01
Thanks George - Amended my code example. – Adamski May 20 '11 at 14:43

You can use apache's commons for that:

String fullStackTrace = org.apache.commons.lang.exception.ExceptionUtils.getFullStackTrace(e);
share|improve this answer
1  
This is a nice one line solution. FYI, for anyone using org.apache.commons.lang3, the full line is: org.apache.commons.lang3.exception.ExceptionUtils.getStackTrace(e); – fileoffset Jul 26 '12 at 1:43
great dude/buddy.... thank u so much.... i am free from my headache – user1640065 Mar 29 at 12:24

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

share|improve this answer
try {
}
catch(Exception e) {
    StackTraceElement[] traceElements = e.getStackTrace();
    //...
}

or

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

I have a utility method that returns a string with the stacktrace:

static String getStackTrace(Throwable t) {
    StringWriter sw = new StringWriter();
    PrintWriter pw = new PrintWriter(sw, true);
    t.printStackTrace(pw);
    pw.flush();
    sw.flush();
    return sw.toString();
}

And just logit like...

... 
catch (FileNotFoundException e) {
    logger.config(getStackTrace(e));
}
share|improve this answer
This looks like one auto generated by Netbeans. – Leif Gruenwoldt Sep 12 '12 at 21:11

A far easier way is to use this:

String stackTrace = Log.getStackTraceString(exception); 
share|improve this answer
2  
Where is getStackTraceString defined? Is this from a third party logging library? – skiphoppy Apr 3 at 20:36
android.util.Log.getStackTraceString developer.android.com/reference/android/util/Log.html – Ondrej Kvasnovsky May 4 at 16:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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