问题
Does Jadclipse
work on Eclipse 3.6
?
I have installed Jadclipse 3.3.0
on my Eclipse 3.6
by copying the jar into the plugins directory and restated eclipse.
Now I have the jadclipse menu under Windows->Preferences but when trying to de-compile any class it simply does not de-compile. I get the usual eclipse screen saying the source is unavailable. There are no errors in the Error Log.
Any idea?
回答1:
I eventually found the answer here.
Running eclipse with -clean
switch and setting the file association between *.class
and the jadclipse
plug-in solved the problem.
回答2:
Set the JAD path correctly in Preferances>Java>Jad. Ex: D:\Jad\jad.exe
If still not working then,
Go to File extensions in Preferences. Select JadClipse as default editor for .class and .class with out source.
回答3:
The main reason is that you eclipse have default class viewer configured for class file which you have to change to your new class decompiler.
go to preference > editor > choose "class without source" and select your tool and mark as default. will work for you :)
回答4:
I had the same problem. Just check if the JadEclipse Class File Viewer is the default viewer for "Class without source" in Preferences -> General -> Editors -> File Associations.
回答5:
Download jad.exe and then in eclipse there are 2 places to configure.
- Window->Preferences->java->JadClipse give the path of jad.exe in Path to decompiler like C:\Users\Documents\xxx\jad.exe. then Apply
- Window->Preferences->General->Editors->File Associations. Click on *.class and in below
dialog box there should be JadClipse Class File Viewer(default). If not click on Add...
add JadClipse as default file viewer. - Do the same for *.class without source as well.
来源:https://stackoverflow.com/questions/6108607/jadclipse-not-working-with-eclipse-3-6