vote up 1 vote down star

Is there a way to print a stack trace to screen in j2me? I have code that looks like the following, which works fine for displaying the message, but can't figure out any way to get ahold of the stack trace.

        try {
    		throw new RuntimeException("This is bad stuff!");
    	} catch (Exception e ) {
    		mainForm.append("Exception: " + e.getMessage());
    	}

Calling e.printStackTrace() sends it somewhere that I can't find...

flag

76% accept rate

3 Answers

vote up 2 vote down check

see this article: http://lwuit.blogspot.com/2008/12/redirecting-output-on-s60-devices.html

too bad there is no System.setErr(PrintWriter) or Thread.getStackTrace()

I don't think there is a (generic) solution for this problem

link|flag
This is totally awesome! I happened to be using an S60 device, so this was perfect – Cory Dec 3 '08 at 14:31
vote up 1 vote down

EVen in CLDC 1.1 this does not exist.. hope Sun includes Rediction of error and out stream in future versions.. It is very essential of logging/debuging..

Regards, Raja Nagendra Kumar

link|flag
vote up 0 vote down

No, you can't. Stack trace is always printed to System.err and there is no way in CLDC to redirect System.err to somewhere else.

link|flag

Your Answer

Get an OpenID
or

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