我已经盯着这个问题看了好几个小时了。任何帮助表示赞赏。
我编写了使用“嵌入式 jode jar 文件”中的 Jode 反编译器的代码。我想使用这个版本,因为它在 Lesser GNU Public License 下。
Decompiler d = new Decompiler();
try {
FileWriter fw = new FileWriter("c:\\jode.txt");
d.setClassPath("C:\\mycode");
ProgressListener p = new ProgressListener() {
public void updateProgress(double arg0, String arg1) {
System.out.println("inside of progress listener with arg0 = " +arg0+ " and arg1 = " +arg1);
}
};
d.decompile("Test.class" , fw, p);
} catch (Exception ex) {
ex.printStackTrace();
}
我总是得到:
Exception in thread "main" java.lang.NoClassDefFoundError: Test.class
at jode.bytecode.ClassInfo.loadInfo(ClassInfo.java:620)
at jode.decompiler.ClassAnalyzer.<init>(ClassAnalyzer.java:86)
at jode.decompiler.ClassAnalyzer.<init>(ClassAnalyzer.java:123)
at jode.decompiler.Decompiler.decompile(Decompiler.java:191)
at testdecompiler.Main.main(Main.java:45)
如果我使用
jode.decompiler.Main.decompile(...)
一切正常 - 但我不能使用这个类文件,因为它位于仅 GPL 的 jode.jar 中。