public class MyClass {
ClassABC abc = new ClassABC();
}
I just have a .class file of ClassABC. I want to print all the public, private, protected and default field values of "abc" object. How can I do this using Reflection?
I just have a .class file of ClassABC. I want to print all the public, private, protected and default field values of "abc" object. How can I do this using Reflection? |
||||
|
|
|
You can get all fields by So, in a nut:
See also: |
||||
|
You can also install the jython - a Python itnerpreter on the JVM, and use the builtin Python "dir" function. It is great because it allows you to interact live with your objects:
|
|||
|
|