Often there is a need to decompile third party or standard Java classes to understand their code. But there is no built-in Java decompiler for Eclipse. However there are freely available external plugins which can be installed in Eclipse to create a built-in decompilation option. Java Decompiler project is one such plugin. In this blog, I’ll list down the steps required to install the JD-Eclipse plugin.

Step 1 – Install JD-Eclipse plugin

Open Eclipse and go to the menu option Help -> Install New Software… In the Available Software window, click on the link, Available Software Sites. In the window, click on Add button. In the pop-up window, provide any name to the site and paste the update site URL as http://jd.benow.ca/jd-eclipse/update and click on OK.

Go to option Install New Software in Eclipse
Click on Available Software Sites
Click on Add to create a new software site
Add a new site for JD-Eclipse

In the Available Software window, select the newly created site from the drop down and wait. Eclipse will fetch the list of plugins available for installation.

Note
While updating Eclipse in a corporate network, a proxy authentication error might be thrown in case the proxy settings are not maintained in Eclipse. Please refer to my blog How to add proxy settings in Eclipse for solving proxy issues in Eclipse.

Proxy Authentication Error in Eclipse

Select all the packages and click Next. Accept the license agreement and click Finish to begin the installation of plugin.

Select the JD-Eclipse packages for downloading
Accept the license

Restart Eclipse after the installation is finished.

Restart Eclipse

Step 2 – Make JD-Eclipse as default class editor

In the Eclipse menu and go to Window -> Preferences

Go to Window - Preferences

In the Preferences windows, go to General -> Editors -> File Associations. In the right-pane, select .class without source as the file type. In the Associated editors: section below, click on the Add button. In the pop-up window which opens up, select Internal editors and in the list below it, select the Class File Editor and click on the OK button

Select the Class File Editor (identified by the coffee-cup icon) and click on the Default button. This makes JD-Eclipse as the default decompiler for class files without source.

Now, simply double-click on any .class file and JD-Eclipse will decompile it for you. You can also place debug points in the decompiled classes while debugging your applications.

Note
The JD-eclipse plugin can only decompile .class files that are visible from the classpath/build path.
How to install Java Decompiler for Eclipse
        

4 thoughts on “How to install Java Decompiler for Eclipse

  • February 4, 2019 at 9:16 PM
    Permalink

    Thanks a lot…

  • September 5, 2018 at 5:10 PM
    Permalink

    It worked thanks a lot

  • September 5, 2018 at 5:09 PM
    Permalink

    It worked

  • August 8, 2018 at 2:15 PM
    Permalink

    thanks for your help.

Comments, Questions or Suggestions: