欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  Java

Java 实例 - 异常处理方法

程序员文章站 2022-05-23 20:40:00
...
以下实例演示了使用 System 类的 System.err.println() 来展示异常的处理方法:
/*
 author by w3cschool.cc
 ExceptionDemo.java
 */class ExceptionDemo{
 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
getMessage():My Exception
getLocalizedMessage():My Exception
toString():java.lang.Exception: My Exception
printStackTrace():
java.lang.Exception: My Exception
   at ExceptionDemo.main(ExceptionDemo.java:5)

以上就是Java 实例 - 异常处理方法的内容,更多相关内容请关注PHP中文网(www.php.cn)!