StackTraceElement.getFileName() has the following syntax.
public String getFileName()
In the following code shows how to use StackTraceElement.getFileName() method.
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.