Extract information about the current method in Java

Say you wish to get some simple information about the currently running function in your Java program. The stacktrace of the current thread can help you find that.

Here’s a simple snippet to print the class name, the file name, the line number and the method name:

public class Person
{
    public void sayHello(int homeManyTimes)
    {
        for (int i = 0; i < homeManyTimes; i++)
        {
            System.out.println("Hello!");
        }
        StackTraceElement[] stackTrace = Thread.currentThread().getStackTrace();
        StackTraceElement currentStackTrance = stackTrace[1];
        System.out.println(currentStackTrance.getClassName());
        System.out.println(currentStackTrance.getFileName());
        System.out.println(currentStackTrance.getLineNumber());
        System.out.println(currentStackTrance.getMethodName());
    }
}

If you call the sayHello function…

Person person = new Person();
person.sayHello(10);

…then you might get an output similar to the following:

com.mycompany.domainobjects.Person
Person.java
20
sayHello

Note that the class name will be the fully qualified name including the namespace.

View all posts related to Java here.

Advertisement

About Andras Nemes
I'm a .NET/Java developer living and working in Stockholm, Sweden.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

Elliot Balynn's Blog

A directory of wonderful thoughts

Software Engineering

Web development

Disparate Opinions

Various tidbits

chsakell's Blog

WEB APPLICATION DEVELOPMENT TUTORIALS WITH OPEN-SOURCE PROJECTS

Once Upon a Camayoc

Bite-size insight on Cyber Security for the not too technical.

%d bloggers like this: