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

Popular posts from this blog

android - How can I execute default sms app? -

jquery .css('text-decoration') doesn't work from parents -

python - sqlite3.OperationalError: near "REFERENCES": syntax error - foreign key creating -