打印全部异常堆栈、ExceptionUtils.getFullStackTrace这样最快

//打印全部异常堆栈
public class ExceptionUtils {
	public static void main(String[] args) {
		try {
			int a=1/0;
		} catch (Exception e) {
			e.printStackTrace();
			String fullStackTrace = org.apache.commons.lang.exception.ExceptionUtils.getFullStackTrace(e);
			System.out.println(fullStackTrace);
 
		}
	}
}
 /**
     * <p>A way to get the entire nested stack-trace of an throwable.</p>
     *
     * <p>The result of this method is highly dependent on the JDK version
     * and whether the exceptions override printStackTrace or not.</p>
     *
     * @param throwable  the <code>Throwable</code> to be examined
     * @return the nested stack trace, with the root cause first
     * @since 2.0
     */
    public static String getFullStackTrace(Throwable throwable) {
        StringWriter sw = new StringWriter();
        PrintWriter pw = new PrintWriter(sw, true);
        Throwable[] ts = getThrowables(throwable);
        for (int i = 0; i < ts.length; i++) {
            ts[i].printStackTrace(pw);
            if (isNestedThrowable(ts[i])) {
                break;
            }
        }
        return sw.getBuffer().toString();
    }

//另一种方式
public static String exception2String(Exception ex){
		String exceptionMessage = "";
		if (ex != null) {
			StringWriter sw = new StringWriter();
			PrintWriter pw = new PrintWriter(sw);
			try {
				ex.printStackTrace(pw);
				exceptionMessage = sw.toString();
			} finally {
				try {
					sw.close();
					pw.close();	
				} catch (Exception e) {
				}
			}
		}
		return exceptionMessage;
	}

史上最全小微信小程序分类,需要的自行下载:

关注我的微信公众号,回复【小程序】获取更多内容

微信小程序源码-合集6  https://blog.csdn.net/qq_41570658/article/details/114752580
微信小程序源码-合集5  https://blog.csdn.net/qq_41570658/article/details/114753137
微信小程序源码-合集4  https://blog.csdn.net/qq_41570658/article/details/114753075
微信小程序源码-合集3  https://blog.csdn.net/qq_41570658/article/details/114753023
微信小程序源码-合集2  https://blog.csdn.net/qq_41570658/article/details/114752988
微信小程序源码-合集1  https://blog.csdn.net/qq_41570658/article/details/114752920

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

唐 城

小朋友,你是不是有很多问号?

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值