9

How can I edit code in a .class file in a .jar file using Android Studio? I have already tried to edit it of course. The class I am trying to edit is a read only for some reason.

Taylor Courtney
  • 813
  • 1
  • 6
  • 23

1 Answers1

16

Jar files are compressed archives (zipped files) of .class files( and few other resources). .class files are compiled .java files. You can not edit a compiled file in normal situation unless you decompile to get source code, edit the code and recompile again.

Decompiling is a tedious process, thus getting a source code is the best option here.

Note: You can rename the .jar file to a .zip file and can open it using any compression tool such as winrar or winzip to see the content.

0xC0DED00D
  • 19,522
  • 20
  • 117
  • 184