There are e.printStackTrace() method to print exceptional error, so I would like to take entire exception in String and show it by Toast.makeText()
How can i do this?
If there are more alternate idea, then please share me or suggest me.

link|improve this question

What is your goal with the bounty? Do you need more information than given in the accepted answer, do you want alternative answers (in which direction?), do you simply want to give an additional reward for the existing answer? Some comment about this would be nice, so possible answerers now what you want in an answer. – PaĆ­lo Ebermann Sep 8 '11 at 23:04
i need more information about it – Dr.nik Sep 9 '11 at 4:22
feedback

5 Answers

up vote 19 down vote accepted
Writer writer = new StringWriter();
PrintWriter printWriter = new PrintWriter(writer);
exception.printStackTrace(printWriter);
String s = writer.toString();

UPDATE

As pointed by @BlackRider in his answer there is a better way to extract an exception stacktrace into the String:

String stackTrace = Log.getStackTraceString(exception);

According to the source android.util.Log.getStackTraceString method does exactly the same as the code I posted above. It's a convenient one-line way to get the string representation of the exception stacktrace in Android (and I guess BlackRider's answer deserves for few upvotes).

link|improve this answer
2  
+1 for good solution – Dr.nik Aug 30 '11 at 12:08
actual i have develop one app in which so many swf are stay in app.and those swf are not play in emulator so each time i have test it in device. but device has limitation that not show error. so i have find out this solution – Dr.nik Aug 30 '11 at 12:09
Glad to help :) – Idolon Aug 30 '11 at 19:39
great solution because others dont always point to the exact line of error!! – Vicky Kapadia May 12 at 5:25
feedback
import android.util.Log;

...

String stackTrace = Log.getStackTraceString(e);
link|improve this answer
Thanks for reminding about that useful Log method. – Idolon Sep 6 '11 at 14:47
3  
Thanks. Looks like it doesn't get the attention it deserves :) – BlackRider Sep 6 '11 at 14:55
nice short and easy – Dennis Sep 9 '11 at 4:55
The best answer for this problem. All others are so tedious – Vicky Kapadia Apr 30 at 7:33
feedback

It's doable, but don't do this. Show just the error message (even that is too much for 'real' users), the full stack trace should go to the log only.

link|improve this answer
i would like to show my error in mobile as toast message – Dr.nik Aug 30 '11 at 12:00
2  
Error != full stack trace. A stack trace shown as a toast will be mostly unreadable. Plus it will disappear after a few seconds, and you won't have time to read it (since it's quite long). – Nikolay Elenkov Aug 30 '11 at 12:15
feedback

you can print the stack trace to a stream & read from it.

    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    PrintWriter pw = new PrintWriter(baos);

e.printStackTrace(pw);
String stachTrace = new String(baos.toByteArray());

or you can use a StringWriter in place of the ByteArrayOutputStream.

link|improve this answer
feedback

In your exception handler use:

StringWriter sw = new StringWriter();
PrintWriter pw = new PrintWriter(sw);

e.printStackTrace(pw);

whateverFunctionYouLikeToPrintYourStackTrace(sw.getBuffer().toString());

However, you're much better off using ADB with logcat, because stack traces on Toasts look terrible.

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.