使用反射读取类的字段时出错

时间:2019-03-28 08:35:08

标签: java reflection decompiling

我有一个非常奇怪的情况,正在反编译一个类。

该类具有以下三个字段:

private String descError;
private Number codError;
private List<String> errorList;

当我用FernFlower或JDGui反编译该类时,我可以看到三个字段,但是当我将包含该类的.jar加载到我的classLoader中时,该类具有“ Map”而不是“ List”。

我获得了一个:

java.lang.reflect.Field

具有以下属性:

签名:Ljava/util/Map<Ljava/lang/Object;Ljava/lang/Object;>;

类型:interface java.util.Map

class:Myclass

有人知道这起奇怪案件的起因吗?

这是我的代码:

private List<MyObjects> loadClass(String clazz, URLClassLoader completeClassLoader) {
    Class<?> loadClass = completeClassLoader.loadClass(clazz);
    Field[] classFields = loadClass.getDeclaredFields();
    for(Field fAux : classFields) {
        //My code
    }
}

loadClass.getDeclaredFields返回以下类型的数组:

[
private java.lang.String MyClass.fieldName1, 
private java.lang.Number MyClass.fieldName2, 
private java.util.Map MyClass.fieldName3
]

代替实际类型:

[
private java.lang.String MyClass.fieldName1, 
private java.lang.Number MyClass.fieldName2, 
private java.util.List MyClass.fieldName3
]

2 个答案:

答案 0 :(得分:0)

您可以尝试

public static void run(String[] args) throws ClassNotFoundException {
    Class clazz = Class.forName("com.testing.reflection.MyClass");// this is where you would specify which class you want, use your own method to plugin the string, it needs to be the full package along with the class name
    Field[] fields = clazz.getDeclaredFields();
    for (Field field : fields) {
        String modifierType = Modifier.toString(field.getModifiers()) + " ";//this will return the modifier each field has in the class
        String fieldType = field.getType().getSimpleName() + " ";// this will return the data type of each field in the class
        System.out.println(modifierType + fieldType + field.getName() + "\n");// field.getName() will return the name of each field in the class
    }
}

它非常基础,您可以以自己的方式实现它,但是它可以工作,这是我运行它时的结果

private String descError

private Number codError

private List errorList

答案 1 :(得分:0)

@ christiaan的答案是可以的。 但是我稍微修改了您的方法,然后得到了正确的类型:

private java.lang.String TestClass.descErrorprivate 
java.lang.Number TestClass.codErrorprivate 
java.util.List TestClass.errorList

private void loadClass(final String clazz) throws ClassNotFoundException {
   final Class<?> loadClass = ClassLoader.getSystemClassLoader().loadClass(clazz);
   final Field[] classFields = loadClass.getDeclaredFields();
   for (final Field fAux : classFields) {
      System.out.printf("%s", fAux);
   }
}