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