Java StackTraceElement .getClassName ()
Syntax
StackTraceElement.getClassName() has the following syntax.
public String getClassName()
Example
In the following code shows how to use StackTraceElement.getClassName() method.
//from w w w . j av a2s. c o m
public class Main {
public static void main(String[] args) {
System.out.print("class name : ");
System.out.print(Thread.currentThread().getStackTrace()[0].getClassName());
}
}
The code above generates the following result.