3

我正在尝试找到一种方法来列出运行时对象所指的对象。我知道有一种方法可以使用 oql 查询 jvm,但我想做的是从程序内部查询它。有什么我可以使用的 API 吗?

4

2 回答 2

3

您可以通过反射 ( java.lang.reflect) 来实现。

如何在本文中描述。基本上,鉴于此类具有私有成员:

public class Secret {

    private String secretCode = "It's a secret";

    private String getSecretCode(){
        return secretCode;     
    }
}

使用 Reflection,您可以访问其所有成员(包括私有成员),包括它们的值。因此,您查看它的所有数据成员以查看它们引用的内容(当然,如果它们也引用其他对象,您可以重复该过程)。以下是访问其成员的方法(此代码也显示了方法,如果您只对数据感兴趣,您可能不需要这些方法,但我没有看到任何充分的理由将其拉出):

import java.lang.reflect.Field; 
import java.lang.reflect.Method; 
import java.lang.reflect.InvocationTargetException; 

public class Hacker {

    private static final Object[] EMPTY = {};

    public void reflect(Object instance)
    throws IllegalAccessException, IllegalArgumentException, InvocationTargetException {
        Class secretClass = instance.getClass();

        // Print all the method names & execution result
        Method methods[] = secretClass.getDeclaredMethods(); 
        System.out.println("Access all the methods"); 
        for (int i = 0; i < methods.length; i++) { 
            System.out.println("Method Name: " + methods[i].getName());
            System.out.println("Return type: " + methods[i].getReturnType());
            methods[i].setAccessible(true);
            System.out.println(methods[i].invoke(instance, EMPTY) + "\n");
        }

        //  Print all the field names & values
        Field fields[] = secretClass.getDeclaredFields();
        System.out.println("Access all the fields");
        for (int i = 0; i < fields.length; i++){ 
            System.out.println("Field Name: " + fields[i].getName()); 
            fields[i].setAccessible(true); 
            System.out.println(fields[i].get(instance) + "\n"); 
        }
    }

    public static void main(String[] args){

        Hacker newHacker = new Hacker();

        try { 
            newHacker.reflect(new Secret());
        }
        catch (Exception e) {
            e.printStackTrace();
        }
    }
}

我已经修复了他们原始代码中的一个错误,并进行了一些小改动以使其更清楚地表明它HackerSecret(除了 in 之外main)没有任何关系。

更新:关于基类字段的问题,这里有一个更新Hacker的问题(我假设您不想尝试枚举字段Object,所以我已经停在那里):

import java.lang.reflect.Field; 
import java.lang.reflect.Method; 
import java.lang.reflect.InvocationTargetException; 

public class Hacker {

    private static final Object[] EMPTY = {};

    public void reflect(Object instance)
    throws IllegalAccessException, IllegalArgumentException, InvocationTargetException {
        Class cls = instance.getClass();

        while (cls != null && cls != Object.class) {
            System.out.println("From class: " + cls.getName());

            // Print all the method names & execution result
            Method methods[] = cls.getDeclaredMethods(); 
            System.out.println("Access all the methods"); 
            for (int i = 0; i < methods.length; i++) { 
                System.out.println("Method Name: " + methods[i].getName());
                System.out.println("Return type: " + methods[i].getReturnType());
                methods[i].setAccessible(true);
                System.out.println(methods[i].invoke(instance, EMPTY) + "\n");
            }

            //  Print all the field names & values
            Field fields[] = cls.getDeclaredFields();
            System.out.println("Access all the fields");
            for (int i = 0; i < fields.length; i++){ 
                System.out.println("Field Name: " + fields[i].getName()); 
                fields[i].setAccessible(true); 
                System.out.println(fields[i].get(instance) + "\n"); 
            }

            // Go to the base class
            cls = cls.getSuperclass();
        }
    }

    public static void main(String[] args){

        Hacker newHacker = new Hacker();

        try { 
            newHacker.reflect(new Secret());
        }
        catch (Exception e) {
            e.printStackTrace();
        }
    }
}

当与

public class BaseSecret {

  private String baseSecretCode = "It's a base secret";

}

public class Secret extends BaseSecret {

    private String secretCode = "It's a secret";

    private String getSecretCode(){
        return secretCode;     
    }
}

你得到:

$ java黑客
来自班级:秘密
访问所有方法
方法名称:getSecretCode
返回类型:类 java.lang.String
这是一个秘密

访问所有字段
字段名称:secretCode
这是一个秘密

来自类:BaseSecret
访问所有方法
访问所有字段
字段名称:baseSecretCode
这是一个基本的秘密
于 2011-12-06T10:59:38.727 回答
-1

您可以使用 Object 类的 getClass() 方法来获取对象的运行时类。

于 2011-12-06T11:01:23.417 回答