如何把printStackTrace出来的信息保存成一个字符串??
在j2se中可以,但MIDP中似乎很难
android.content.Context
preferences 是放置系统文件的地方
Writer w = new StringWriter();e.printStackTrace(new PrintWriter(w));String smsg = w.toString();