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();
    }

猜你喜欢

转载自xxxx1243.iteye.com/blog/1692120