Is is possible to get information of .class file(in java) without use of reflection -


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