Can someone guide me?
Is it possible to get information about the .class file (in Java) without the use of reflection? Information like classroom methods, constructor field etc, and can we call them even without reflection in Java?
Thanks in advance.
You can analyze .class as a bytecode. Manually or using a library such as
Comments
Post a Comment