Java 实例 - 异常处理方法

以下实例演示了使用 System 类的 System.err.println() 来展示异常的处理方法:

ExceptionDemo.java 文件

  1. class ExceptionDemo
  2. {
  3. public static void main(String[] args) {
  4. try {
  5. throw new Exception("My Exception");
  6. } catch (Exception e) {
  7. System.err.println("Caught Exception");
  8. System.err.println("getMessage():" + e.getMessage());
  9. System.err.println("getLocalizedMessage():" + e.getLocalizedMessage());
  10. System.err.println("toString():" + e);
  11. System.err.println("printStackTrace():");
  12. e.printStackTrace();
  13. }
  14. }
  15. }

以上代码运行输出结果为:

  1. Caught Exception
  2. getMessage():My Exception
  3. getLocalizedMessage():My Exception
  4. toString():java.lang.Exception: My Exception
  5. printStackTrace():
  6. java.lang.Exception: My Exception
  7. at ExceptionDemo.main(ExceptionDemo.java:5)