0

I have tried to decompile .class file with JD. BUt i got Strange code in it(Static call to a non static method, Classname.this.method etc.) .

Could you please tell me whether it will give 100 percent source code or not?

TheLostMind
  • 35,966
  • 12
  • 68
  • 104
Raj Pannala
  • 67
  • 1
  • 9

1 Answers1

0

No, java decompilers can't give you the exact source code back. Many compiler optimizations will not be reflected back in the generated file.

TheLostMind
  • 35,966
  • 12
  • 68
  • 104