在 Java 中检索代理调用对象的接口类
我有一个接口,其实现在运行时决定,并给出一个代理对象作为其动态实现。我想检索此代理对象实现的接口以了解接口中的方法。有什么办法可以用 Java 做到这一点吗?
I have an Interface whose implementation is deciding at Runtime and is given a Proxy Object as its dynamic implementation. I want to retrieve the Interface which this proxy object implements to know the methods in the interface. Is there any way I can do so in Java.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试一下(使用普通反射):
对于以下代码:
它正确返回 java.io.Serialized 接口。
Try this (using plain reflection):
For the following code:
It correctly return
java.io.Serializable
interface.