Java Throwable printStackTrace()方法

java.lang.Throwable.printStackTrace() 方法打印此抛出其回溯到标准错误流。它打印这个Throwable对象的堆栈跟踪有关错误输出流是作为字段System.err的值。

1 语法

public void printStackTrace()

2 参数

3 返回值

此方法不返回任何值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Throwable printStackTrace()方法
 */
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)

 

热门文章

优秀文章