Java StackTraceElement .getFileName ()
Syntax
StackTraceElement.getFileName() has the following syntax.
public String getFileName()
Example
In the following code shows how to use StackTraceElement.getFileName() method.
//from w w w . ja va 2 s . co m
public class Main {
public static void main(String[] args) {
System.out.print("file name : ");
System.out.print(Thread.currentThread().getStackTrace()[0].getFileName());
}
}
The code above generates the following result.