码迷,mamicode.com
首页 > 其他好文 > 详细

Exception异常规范

时间:2015-10-29 11:03:14      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:

把异常的栈轨迹以String形式返回

    /**
     * 把异常的栈轨迹以String形式返回,而不是直接打印到console
     * @author King
     * @time 2015-04-29
     * @return
     */
    public static String getLongInfo(Throwable e){   
        StringWriter sw = new StringWriter();   
        PrintWriter pw = new PrintWriter(sw, true);   
        e.printStackTrace(pw);   
        pw.flush();   
        sw.flush();   
        return sw.toString();   
    } 

  

Exception异常规范

标签:

原文地址:http://www.cnblogs.com/whatlonelytear/p/4919398.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!