Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can one get the name of the class from a static method in that class. For example

public class MyClass {
    public static String getClassName() {
        String name = ????; // what goes here so the string "MyClass" is returned
        return name;
    }
}

To put it in context, I actually want to return the class name as part of a message in an exception.

share|improve this question

8 Answers

up vote 46 down vote accepted

For the full name (with package too):

 MyClass.class.getName();

For the name of the class and no more (thanks to @James Van Huis):

 MyClass.class.getSimpleName();
share|improve this answer
43  
If you're going to hard-code in knowledge of MyClass like that, then you might as well just do String name = "MyClass"; ! – John Topley Jun 1 '09 at 20:45
37  
But then, refactoring the class name in your IDE will not work properly. – James Van Huis Jun 1 '09 at 20:48
2  
True. Although MyClass.class will ensure this line doesn't get forgotten with a 'change class name' refactoring – toolkit Jun 1 '09 at 20:50
4  
I wish "this" worked in a static context to mean the current Class in Java, that that "class.xxx" was allowed in either instance or static code to mean this class! The problem with this is that MyClass is verbose and redundant, in the context. But then as much as I like Java it does seem to lean towards verbosity. – Software Monkey Jun 2 '09 at 4:41
9  
What if I'm calling the static method in a subclass, and I want the subclass name? – Edward Falk Oct 26 '12 at 15:49
show 2 more comments

Do what toolkit says. Do not do anything like this:

return new Object() { }.getClass().getEnclosingClass();
share|improve this answer
7  
this seems less bad than the SecurityManager or Throwable solutions... – Tetsujin no Oni Jun 1 '09 at 21:06
There is no arguing with that. – Tom Hawtin - tackline Jun 1 '09 at 22:21
Great one idiom! – alexsmail Jan 20 '12 at 21:41
2  
If the class extends another one, this doesn't return the actual class, only the base class. – Luis Soeiro Sep 12 '12 at 22:34
@LuisSoeiro I believe it returns the class that the method is defined in. I'm not sure how the base class factors into the static context. – Tom Hawtin - tackline Sep 13 '12 at 0:18

This instruction works fine:

Thread.currentThread().getStackTrace()[1].getClassName();
share|improve this answer
Take care, that it can be really slow. However you can copy paste it. – Gábor Lipták Nov 12 '12 at 13:12
This has the added benefit of not having to create an Object or a Thread each time you use it. – Erel Segal Halevi Jan 1 at 12:46

I use this to init the Log4j Logger at the top of my classes (or annotate).

PRO: Throwable is already loaded and you might save resources by not using the "IO heavy" SecurityManager.

CON: Some question as to whether this will work for all JVMs.

// Log4j . Logger --- Get class name in static context by creating an anonymous Throwable and 
// getting the top of its stack-trace. 
// NOTE you must use: getClassName() because getClass() just returns StackTraceElement.class 
static final Logger logger = Logger.getLogger(new Throwable() .getStackTrace()[0].getClassName()); 
share|improve this answer

If you want the entire package name with it, call:

String name = MyClass.class.getCanonicalName();

If you only want the last element, call:

String name = MyClass.class.getSimpleName();
share|improve this answer
+1 nice answer ;-) – Ginger Head Mar 8 '12 at 10:35

Abuse the SecurityManager

System.getSecurityManager().getClassContext()[0].getName();

Or, if not set, use an inner class that extends it (example below shamefully copied from Real's HowTo):

public static class CurrentClassGetter extends SecurityManager {
    public String getClassName() {
        return getClassContext()[1].getName(); 
    }
}
share|improve this answer

You could do something really sweet by using JNI like this:

MyObject.java:

public class MyObject
{
    static
    {
        System.loadLibrary( "classname" );
    }

    public static native String getClassName();

    public static void main( String[] args )
    {
        System.out.println( getClassName() );
    }
}

then:

javac MyObject.java
javah -jni MyObject

then:

MyObject.c:

#include "MyObject.h"

JNIEXPORT jstring JNICALL Java_MyObject_getClassName( JNIEnv *env, jclass cls )
{
    jclass javaLangClass = (*env)->FindClass( env, "java/lang/Class" );
    jmethodID getName = (*env)->GetMethodID( env, javaLangClass, "getName",
        "()Ljava/lang/String;" );
    return (*env)->CallObjectMethod( env, cls, getName );
}

Then compile the C up into a shared library called libclassname.so and run the java!

*chuckle

share|improve this answer
Definitely ;-) ! – toolkit Sep 28 '11 at 12:56
+1 great stuff! ;) – Ginger Head Mar 8 '12 at 10:32
String className = this.getClass().getSimpleName();

You don't need any knowledge of "MyClass".   

share|improve this answer
3  
this doesn't work in a static context. – bluesmoon Apr 9 at 16:56
There's no this here! – codeplumber May 7 at 0:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.