I have a file MyFile.jar. I use the JD-GUI to decompile it and use its Save All Sources options to save the files in a .zip file. Now the .zip file is extracted and the .java file is edited.
the folder structure after extracting the .zip file is similar to
_____ META-INF(folder)
source(folder) -------|
------com(folder)-->example--->App---> all .java files
Now how to recompile it back to a .jar file?
source
share