I use Class.forName("classname")
to get a Class object, I want to convert to Class object to String, which means decompile the java file, and show this string to GUI.
How can I do? Thanks
I use Class.forName("classname")
to get a Class object, I want to convert to Class object to String, which means decompile the java file, and show this string to GUI.
How can I do? Thanks
Java won't decompile classes for you - you need a separate decompiler for that. Try this one, which was suggested by this answer.