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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Java won’t decompile classes for you – you need a separate decompiler for that. Try this one, which was suggested by this answer.