package com.oying.utils; import java.io.PrintWriter; import java.io.StringWriter; /** * 异常工具 2019-01-06 * @author Z */ public class ThrowableUtil { /** * 获取堆栈信息 */ public static String getStackTrace(Throwable throwable){ StringWriter sw = new StringWriter(); try (PrintWriter pw = new PrintWriter(sw)) { throwable.printStackTrace(pw); return sw.toString(); } } }