When attempting to decompile a JAR file into a Java project using the Java Decompiler JD-GUI, I encountered an issue with the decompiled methods. Here is an example:
public Node getNode() {
Node res = null;
try {
Exception exception2, exception1 = null;
} catch (Exception e) {
e.printStackTrace();
}
return res;
}
I'm seeking assistance in two aspects:
How can I resolve the apparent issue with the Exception exception2, exception1 = null; try/catch block, as the original method should contain different code?
Are there alternative methods available that are more efficient for decompiling JAR files into Java projects and executing them?
Some things to note about decompiling ...
Some libraries, like the CyberArk libraries, are intentionally coded in such a way that makes them hard to understand.
Also, if the library is compiled from a language other than Java, you will not get what you expect. This is particularly true with Groovy, where a bunch of
sitecall
commands appear.