Java Thread.getStackTrace()
Syntax
Thread.getStackTrace() has the following syntax.
public StackTraceElement [] getStackTrace()
Example
In the following code shows how to use Thread.getStackTrace() method.
/*ww w.j a v a2 s . com*/
public class Main {
public static void main(String[] args) {
System.out.println(Thread.currentThread().getStackTrace()[0].getClassName());
}
}