首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 互联网 >

java打印错误中的堆栈信息

2012-10-17 
java打印异常中的堆栈信息Print the Stack Trace of the Exception to a Stringimport java.io.PrintWrite

java打印异常中的堆栈信息
Print the Stack Trace of the Exception to a String

    import java.io.PrintWriter;
    import java.io.StringWriter;
    public 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();
    }

热点排行