使用Java打印一个类的全部信息的方法--反射

package equals;

import java.lang.reflect.Constructor;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.util.Scanner;


public class ReflectionTest {
    public static void main(String[] args){
        String name;
        if(args.length>0)
            name=args[0];
        else{
            Scanner in=new Scanner(System.in);
            System.out.println("Enter class name(e.g.java.util.Date):");
            name=in.next();
        }

        try {
            Class c1=Class.forName(name);
            Class superc1=c1.getSuperclass();
            String modifiers= Modifier.toString(c1.getModifiers());
            if(modifiers.length()>0)
                System.out.print(modifiers+" ");
            System.out.print("class "+name);
            if(superc1!=null && superc1!=Object.class)
                System.out.print("extends "+superc1.getName());
            System.out.print("\n{\n");
            printConstructors(c1);
            System.out.println();
            printMethods(c1);
            System.out.println();
            printFields(c1);
            System.out.println("}");
        }
        catch (ClassNotFoundException e){
            e.printStackTrace();
        }
        System.exit(0);
    }


    public static void printConstructors(Class c1){
        Constructor[] constructors=c1.getDeclaredConstructors();

        for (Constructor c:constructors) {
            String name=c.getName();
            System.out.print(" ");
            String modifiers=Modifier.toString(c.getModifiers());
            if(modifiers.length()>0)
                System.out.print(modifiers+" ");
            System.out.print(name+"(");

            Class[] paramTypes=c.getParameterTypes();
            for (int i = 0; i < paramTypes.length; i++) {
                if(i>0)
                    System.out.print(", ");
                System.out.print(paramTypes[i].getName());
            }
            System.out.println(");");
        }
    }


    public static void printMethods(Class c1){
        Method[] methods=c1.getDeclaredMethods();
        for (Method m:methods) {
            Class retType=m.getReturnType();
            String name=m.getName();

            System.out.print("  ");
            String modifiers=Modifier.toString(m.getModifiers());
            if(modifiers.length()>0)
                System.out.print(modifiers+" ");
            System.out.print(retType.getName()+" "+name+"(");
            Class[] paraTypes=m.getParameterTypes();
            for (int i = 0; i < paraTypes.length; i++) {
                if(i>0)
                    System.out.print(", ");
                System.out.print(paraTypes[i].getName());
            }
            System.out.println(");");
        }
    }
    public static void printFields(Class c1){
        Field[] fields=c1.getDeclaredFields();
        for (Field f:fields) {
            Class type=f.getType();
            String name=f.getName();
            System.out.print("  ");
            String modifiers=Modifier.toString(f.getModifiers());
            if(modifiers.length()>0)
                System.out.println(type.getName()+" "+name+";");
        }
    }

}
 
 

在java.lang.reflect中有三个类Field、Method、Constructor分别描述类的域、方法、构造器。

1)在三个类中都包含着一个getName()的方法,用以返回项目的名称

2)Method与Constructor中有能返回参数类型的方法

3)Method有报告返回类型的方法

4)三个类中都有一个叫getModifiers的方法,返回一个整数值,用不同的位开关描述public与static这样的修饰符

5)在reflec包中还有一个Modifier的类,其中的isPublic、isPrivate、isFinal判断是否为Public、Private、Final,可以利用Modifier.toString方法将修饰符打印出来

猜你喜欢

转载自blog.csdn.net/Billy1900/article/details/80599210