3

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

user3497375
  • 45
  • 2
  • 2
  • 6

2 Answers2

3

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

Alaa Abuzaghleh
  • 1,023
  • 6
  • 11
0

It's because you care using a lower version of Java than the one that was used for compiling the class

Nitin Dandriyal
  • 1,559
  • 11
  • 20