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