Thursday, September 23, 2010

Getting the class name using reflection in java

At run time, you can determine the name of a Class object by invoking the getName method. The String returned by getName is the fully-qualified name of the class.
The following program gets the class name of an object. First, it retrieves the corresponding Class object, and then it invokes the getName method upon that Class object.
import java.lang.reflect.*;
import java.awt.*;

class SampleName {

public static void main(String[] args) {
Button b = new Button();
printName(b);
}

static void printName(Object o) {
Class c = o.getClass();
String s = c.getName();
System.out.println(s);
}
}
The sample program prints the following line:
java.awt.Button

No comments:

Post a Comment

Chitika