JADClipse does not work with Eclipse 3.6

Does Jadclipse on Eclipse 3.6 ?

I installed Jadclipse 3.3.0 on my Eclipse 3.6 , copying the jar into the plugins directory and recounting the eclipse.

Now I have jadclipse menu Windows-> Preferences , but when I try to decompile any class, it just does not decompile. I get a regular eclipse screen saying the source is unavailable. There are no errors in the error log .

Any idea?

+7
source share
5 answers

I ended up finding the answer here .

Running the eclipse with the -clean switch and connecting the *.class and the jadclipse plugin resolved the issue.

+13
source

Set the JAD path correctly in Preferences> Java> Jad. Example: D: \ Jad \ jad.exe

If still not working,

Go to the File extensions section in the settings. Select JadClipse as the default editor for .class and .class with source code.

+5
source

The main reason is because you overshadow the configured default class viewer for the class file, which you must change to your new class decompiler.

Go to "Settings"> "Editor"> select " class without source ", select the tool and mark it by default. will work for you :)

+3
source

I had the same problem. Just check if the JadEclipse class file viewer is the default viewer for "Class without source" under "Settings" → "General" → "Editors" → "Files".

+2
source

Download jad.exe and then there are 2 places to configure in Eclipse.

  1. Window-> Preferences → java-> JadClipse sets the path to the jad.exe file in the path to the decompiler as C: \ Users \ Documents \ xxx \ jad.exe. then apply
  2. Window-> Preferences → General-> Editors-> File Associations. Click on * .class and below The dialog should have a JadClipse File File Viewer (default). If not, click Add ...
    add JadClipse as your default file viewer.
  3. Do the same for * .class without source code.
0
source

All Articles