Java Throwable getStackTrace() 方法



描述

Java Throwable getStackTrace() 方法返回一个堆栈跟踪元素数组,每个元素代表一个堆栈帧。数组的第零个元素(假设数组长度非零)表示堆栈顶部,这是序列中的最后一个方法调用。这是创建并抛出此可抛出对象的位置。

数组的最后一个元素(假设数组长度非零)表示堆栈底部,这是序列中的第一个方法调用。

声明

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

public StackTraceElement[] getStackTrace()

参数

返回值

此方法返回一个堆栈跟踪元素数组,表示与此可抛出对象相关的堆栈跟踪。

异常

示例:获取 Throwable 的堆栈跟踪

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

package com.tutorialspoint;

public class ThrowableDemo {

   public static void main(String[] args) {

      try {
         raiseException();
      } catch(Throwable e) {
         // access to the stack trace
         StackTraceElement[] trace = e.getStackTrace();
         System.err.println(trace[0].toString());
      }
   }
  
   public static void raiseException()throws Throwable {

      Throwable t = new Throwable("This is new Exception...");
      StackTraceElement[] trace = new StackTraceElement[] {
         new StackTraceElement("ClassName","methodName","fileName",10)
      };

      // sets the stack trace elements
      t.setStackTrace(trace);
      throw t;
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

ClassName.methodName(fileName:10)

示例:获取 Exception 的堆栈跟踪

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

package com.tutorialspoint;

public class ThrowableDemo {

   public static void main(String[] args) {

      try {
         raiseException();
      } catch(Throwable e) {
         // access to the stack trace
         StackTraceElement[] trace = e.getStackTrace();
         System.err.println(trace[0].toString());
      }
   }
  
   public static void raiseException()throws Exception {

      Exception t = new Exception("This is new Exception...");
      StackTraceElement[] trace = new StackTraceElement[] {
         new StackTraceElement("ClassName","methodName","fileName",10)
      };

      // sets the stack trace elements
      t.setStackTrace(trace);
      throw t;
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

ClassName.methodName(fileName:10)

示例:获取 RuntimeException 的堆栈跟踪

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

package com.tutorialspoint;

public class ThrowableDemo {

   public static void main(String[] args) {

      try {
         raiseException();
      } catch(Throwable e) {
         // access to the stack trace
         StackTraceElement[] trace = e.getStackTrace();
         System.err.println(trace[0].toString());
      }
   }
  
   public static void raiseException()throws RuntimeException {

      RuntimeException t = new RuntimeException("This is new Exception...");
      StackTraceElement[] trace = new StackTraceElement[] {
         new StackTraceElement("ClassName","methodName","fileName",10)
      };

      // sets the stack trace elements
      t.setStackTrace(trace);
      throw t;
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果:

ClassName.methodName(fileName:10)
java_lang_throwable.htm
广告