zoukankan      html  css  js  c++  java
  • Java code lib 反射查询类结构

    import java.lang.reflect.Constructor;
    import java.lang.reflect.Field;
    import java.lang.reflect.Method;
    import java.lang.reflect.Modifier;
    
    public class ReflectionDemo {
        public static void main(String[] args) {
            ReflectionDemo.paresClass("java.util.Date");
        }
    
    
        public static void paresClass(String className) {
    
            try {
                Class cl = Class.forName(className);
                cl.getComponentType();
                Class supercl = cl.getSuperclass();
                String modifiers = Modifier.toString(cl.getModifiers());
                if (modifiers.length() > 0) {
                    System.out.print(modifiers + " ");
                }
                System.out.print("class" + className);
                if (supercl != null && supercl != Object.class) {
                    System.out.print(" extends " + supercl.getName());
                }
                System.out.print("
    {
    ");
                printConstructor(cl);
                System.out.println();
                printMethods(cl);
                System.out.println();
                printFields(cl);
                System.out.println();
            } catch (Exception e) {
    
            }
        }
    
    
        private static void printFields(Class cl) {
            Field[] fields = cl.getDeclaredFields();
            for (Field f : fields) {
                Class type = f.getType();
                String name = type.getName();
                System.out.print(" ");
                String modifiers = Modifier.toString(f.getModifiers());
                if (modifiers.length() > 0) {
                    System.out.print(modifiers + " ");
                }
                System.out.println(type.getName() + " " + name + ";");
            }
        }
    
    
        private static void printMethods(Class cl) {
            Method[] methods = cl.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[] paramTypes = m.getParameterTypes();
                for (int j = 0; j < paramTypes.length; j++) {
                    if (j > 0) {
                        System.out.print(",");
                    }
                    System.out.print(paramTypes[j].getName());
                }
                System.out.println(");");
            }
        }
    
    
        private static void printConstructor(Class cl) {
            Constructor[] constructors = cl.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 j = 0; j < paramTypes.length; j++) {
                    if (j > 0) {
                        System.out.print(",");
                    }
                    System.out.print(paramTypes[j].getName());
                }
                System.out.println(");");
            }
        }
    }
  • 相关阅读:
    懒加载数据,在取出数据时容易出的bug....
    小程序申请及小程序发布
    SSL证书申请及安装
    iview modal 覆盖问题
    取消div独占一行的特性
    GPS坐标互转:WGS-84(GPS)、GCJ-02(Google地图)、BD-09(百度地图)、(百度坐标转谷歌坐标)
    工厂方法模式
    STS创建SpringBoot项目
    snmp协议学习记录
    操作系统命令学习记录
  • 原文地址:https://www.cnblogs.com/lvjianwei/p/8335606.html
Copyright © 2011-2022 走看看