以下實例示範了使用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)!