如何获取Java代理的调用处理程序?

时间:2010-04-06 10:09:39

标签: java reflection proxy

假设:

Object innerProxy = ...
Object proxy = java.lang.reflect.Proxy.
                newProxyInstance(Thread.currentThread().getContextClassLoader(),
                                 new Class[]{type},
                                 innerProxy);

如何从innerProxy中提取proxy对象?

1 个答案:

答案 0 :(得分:15)

您可以使用Proxy.getInvocationHandler()

InvocationHandler innerProxy = Proxy.getInvocationHandler(proxy);