Unusual method appeared when decompiling JAR file into java project

101 Views Asked by At

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:

  1. How can I resolve the apparent issue with the Exception exception2, exception1 = null; try/catch block, as the original method should contain different code?

  2. Are there alternative methods available that are more efficient for decompiling JAR files into Java projects and executing them?

1

There are 1 best solutions below

0
On

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.