자바 의 이상 (Exception) 정보 에 대한 상세 한 기록

1314 단어
자바 의 이상 (Exception) 정보의 상세 한 기록 은 Exception 의 상세 한 정 보 를 얻 습 니 다. 아래 세 가지 방법 은 모두 이상 한 상세 한 정 보 를 얻 는 것 입 니 다. 혹시 이상 한 상세 한 정 보 는 문자열 로 되 돌아 가 스 택 의 스타일 을 유지 할 수 있 습 니 다.
방법 1:
public static String getExceptionAllinformation(Exception ex){
        String sOut = "";
        StackTraceElement[] trace = ex.getStackTrace();
        for (StackTraceElement s : trace) {
            sOut += "\tat " + s + "\r
";         }         return sOut;  }

방법 2:
public static String getExceptionAllinformation_01(Exception ex) {
         ByteArrayOutputStream out = new ByteArrayOutputStream();
         PrintStream pout = new PrintStream(out);
         ex.printStackTrace(pout);
         String ret = new String(out.toByteArray());
         pout.close();
         try {
              out.close();
         } catch (Exception e) {
         }
         return ret;
 }

방법 3:
 private static String toString_02(Throwable e){  
            StringWriter sw = new StringWriter();  
            PrintWriter pw = new PrintWriter(sw, true);  
            e.printStackTrace(pw);  
            pw.flush();   
            sw.flush();  
            return sw.toString();  
    }

다음으로 전송:https://blog.51cto.com/zlfwmm/1636321

좋은 웹페이지 즐겨찾기