I decompiled a .jar file using JD-GUI, and a lot of packages that were weirdly named like a
, b
, c
, d
, and so on. It was also the same for the classes, so some of the .class
files were also named like a.class
, b.class
and so on.
I don't believe the developers name the packages or Java files in such a way that they cannot recognize later what each file does. I believe that this is because of some other technical issues. Can someone be clear on this issue?
The Jar you've decompiled is probably protected using ProGuard:
It is still possible to reverse engineer the program, but it's very often illegal to do so and then reuse the code (at least in the United States, the only country with which I have experience), as it's a licensing violation. People who use tools such as this one are almost always not writing open source software.