位置:首頁 > Java技術 > java實例教學 > Java異常方法

Java異常方法

如何處理異常的方法呢?

解決方法

這個例子顯示了如何通過使用System類的System.err.println()方法來處理異常的方法。

public static void main(String[] args) {
       try {
       throw new Exception("My Exception");
       } catch (Exception e) {
       System.err.println("Caught Exception");
       System.err.println("getMessage():" + e.getMessage());
       System.err.println("getLocalizedMessage():"
       + e.getLocalizedMessage());
       System.err.println("toString():" + e);
       System.err.println("printStackTrace():");
       e.printStackTrace();
       }
 }

結果

上麵的代碼示例將產生以下結果。

Caught Exception
getMassage(): My Exception
gatLocalisedMessage(): My Exception
toString():java.lang.Exception: My Exception
print StackTrace():
 java.lang.Exception: My Exception
   at ExceptionMethods.main(ExceptionMeyhods.java:12)