java.lang.Throwable.printStackTrace()方法實例
java.lang.Throwable.printStackTrace() 方法打印此拋出其回溯到標準錯誤流。它打印這個Throwable對象的堆棧跟蹤有關錯誤輸出流是作為字段System.err的值。
聲明
以下是java.lang.Throwable.printStackTrace()方法的聲明
public void printStackTrace()
參數
-
NA
返回值
此方法不返回任何值。
異常
-
NA
例子
下麵的例子顯示java.lang.Throwable.printStackTrace()方法的使用。
package com.yiibai; import java.lang.*; public class ThrowableDemo { public static void main(String[] args) { try { ExceptionFunc(); } catch(Throwable e) { // prints stacktace for this Throwable Object e.printStackTrace(); } } public static void ExceptionFunc() throws Throwable { Throwable t = new Throwable("This is new Exception..."); StackTraceElement[] trace = new StackTraceElement[] { new StackTraceElement("ClassName","methodName","fileName",5) }; // sets the stack trace elements t.setStackTrace(trace); throw t; } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
java.lang.Throwable: This is new Exception... at ClassName.methodName(fileName:5)