位置:首页 > 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)