How to convert .class file to .java file?

19,608

use Java Decompiler http://jd.benow.ca/ in it you can open jar, or .class and it will converted to java source.

Share:
19,608
user3497375
Author by

user3497375

Updated on June 04, 2022

Comments

  • user3497375
    user3497375 almost 2 years

    I am trying to convert a .class file to .java. I have only the .class file. I used jad, but I'm getting error as:

     The class file version is 49.0( only 45.3, 46 and 47 are supported)  JavaClassFileParseException.
    

    How do I resolve this issue? Kindly provide your valuable inputs.

    The Simple way to do is using: SeeMyCode