How do I get the underlying type of a proxy object in java? -


i'd access classname of underlying class instance of java.lang.reflect.proxy.

is possible?

you can invocationhandler proxy created, calling proxy.getinvocationhandler(proxy)

note in case of java.lang.reflect.proxy there no underlying class per se. proxy defined by:

  • interface(s)
  • invocation handler

and wrapped class passed concrete invocation handler.


Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -