I am going through a socket program. In it, printStackTrace is caught by the catch block. What does printStackTrace actually do?

    catch(IOException ioe)
    {
        ioe.printStackTrace();
    }

I am unaware of it purpose. What is it used for?

link|improve this question

78% accept rate
2  
One of the most powerful features in modern IDE's is the ability to look up documentation (called javadoc) for a given Java method. In Eclipse it is Shift-F2 when the cursor is placed on the printStackTrace method name. – Thorbjørn Ravn Andersen Apr 1 '10 at 13:36
Sounds like you're new to Java. Here's something to read: today.java.net/article/2006/04/04/… – TJR Apr 1 '10 at 17:48
You can also read the code of the printStackTrace() to see exactly what it does and how it does it. – Peter Lawrey Nov 18 '10 at 10:59
What a cool functionality! i dont know it before. But i guess it will be better if i can make the fonts displayed bigger, just like the real web browser.@ThorbjørnRavnAndersen – MarkZar Jan 28 at 8:12
@MarkZar Eclipse by default use an internal browser. You can set it to use the system browser, which use your normal browser with its normal settings. – Thorbjørn Ravn Andersen Jan 28 at 8:14
show 1 more comment
feedback

2 Answers

up vote 4 down vote accepted

It prints the stack trace of the Exception to System.err.

It's a very simple, but very useful tool for diagnosing an Exception. It tells you what happened and where in the code this happened.

link|improve this answer
And thanks to checked exceptions it's probably the #1 content of catch blocks :-) – Joey Apr 3 '10 at 7:57
@Joey Or throw new RuntimeException(e) – Bart van Heukelom Jul 19 '11 at 8:16
feedback

It helps to trace the exception. For example you are writing some methods in your program and one of your methods causes bug. Then printstack will help you to identify which method causes the bug. Stack will help like this:

First your main method will be called and inserted to stack, then the second method will be called and inserted to the stack in LIFO order and if any error occurs somewhere inside any method then this stack will help to identify that method.

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.