假设:
Object innerProxy = ...
Object proxy = java.lang.reflect.Proxy.
newProxyInstance(Thread.currentThread().getContextClassLoader(),
new Class[]{type},
innerProxy);
如何从innerProxy
中提取proxy
对象?
答案 0 :(得分:15)
您可以使用Proxy.getInvocationHandler()
:
InvocationHandler innerProxy = Proxy.getInvocationHandler(proxy);