Java Throwable printStackTrace() 方法



描述

Java Throwable printStackTrace() 方法将此 throwable 及其回溯打印到标准错误流。它在错误输出流上打印此 Throwable 对象的堆栈跟踪,该错误输出流是字段 System.err 的值。

声明

以下是 java.lang.Throwable.printStackTrace() 方法的声明

public void printStackTrace()

参数

返回值

此方法不返回值。

异常

示例:打印 Throwable 的堆栈跟踪

以下示例演示了 Java Throwable printStackTrace() 方法的使用。我们定义了一个方法 raiseException(),它在设置堆栈跟踪后抛出一个 Throwable。在 main 方法中,调用 raiseException() 方法,并在 catch 块中检索异常堆栈跟踪并使用 printStackTrace() 方法打印。

package com.tutorialspoint;

public class ThrowableDemo {

   public static void main(String[] args) {

      try {
         raiseException();
      } catch(Throwable e) {
         // prints stacktrace for this Throwable Object
         e.printStackTrace();
      }
   }
  
   public static void raiseException() 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)

示例:打印 Exception 的堆栈跟踪

以下示例演示了 Java Throwable printStackTrace() 方法的使用。我们定义了一个方法 raiseException(),它在设置堆栈跟踪后抛出一个 Exception。在 main 方法中,调用 raiseException() 方法,并在 catch 块中检索异常堆栈跟踪并使用 printStackTrace() 方法打印。

package com.tutorialspoint;

public class ThrowableDemo {

   public static void main(String[] args) {

      try {
         raiseException();
      } catch(Throwable e) {
         // prints stacktrace for this Throwable Object
         e.printStackTrace();
      }
   }
  
   public static void raiseException() throws Exception {

      Exception t = new Exception("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.Exception: This is new Exception...
at ClassName.methodName(fileName:5)

示例:打印 RuntimeException 的堆栈跟踪

以下示例演示了 Java Throwable printStackTrace() 方法的使用。我们定义了一个方法 raiseException(),它在设置堆栈跟踪后抛出一个 RuntimeException。在 main 方法中,调用 raiseException() 方法,并在 catch 块中检索异常堆栈跟踪并使用 printStackTrace() 方法打印。

package com.tutorialspoint;

public class ThrowableDemo {

   public static void main(String[] args) {

      try {
         raiseException();
      } catch(Throwable e) {
         // prints stacktrace for this Throwable Object
         e.printStackTrace();
      }
   }
  
   public static void raiseException() throws RuntimeException {

      RuntimeException t = new RuntimeException("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.RuntimeException: This is new Exception...
at ClassName.methodName(fileName:5)
java_lang_throwable.htm
广告