jd-core java反编译工具

想做一个在线java反编译工具,找了http://jd.benow.ca/ http://varaneckas.com/jad/ 这两个工具。

前一个工具比较好,但是jd-core不没有提供下载。详见 http://zhouliang.pro/2010/06/26/jad/ 

搜索中发现了这个项目 https://github.com/nviennot/jd-core-java/ 

JD-Core-java is a thin-wrapper for the Java Decompiler.

This is hack around the IntelliJ IDE plugin. It fakes the interfaces of the IDE, and provides access to JD-Core.

Since the Author of JD-Core is not willing to provide a library, as seen on this thread, and we all want to batch decompilation, this is pretty much our only option.

I hope this will motivate the author to release a proper library.

这个是抽取IntelliJ IDE jd plugin的插件中的jd-core来实现的,但是现在只有linux版本的。

受此启示,我下载eclipse的jd插件,应该也是包含的。果不其然,是包含的。

但是,抽取代码的发现了一些问题,就是反编译不完全。不知道是哪里出了问题。

改写了下面的代码:

package jd.ide.eclipse.editors;

public class JDSourceMapper 
{
	
	private final static String JAVA_CLASS_SUFFIX         = ".class";
	private final static String JAVA_SOURCE_SUFFIX        = ".java";
	private final static int    JAVA_SOURCE_SUFFIX_LENGTH = 5;
	private final static String JAR_SUFFIX                = ".jar";
	private final static String ZIP_SUFFIX                = ".zip";
	
	private static boolean loaded = true;

	static {
		System.load("d://jd-eclipse.dll");
	}

	public static void main(String[] args) {
		JDSourceMapper jd = new JDSourceMapper();
		String s = jd.decompile("d:/antlr-2.7.7.jar", "antlr/ActionElement.class");
		System.out.println(s);
	}
		
	public native String decompile(String basePath, String classPath);

}

但是反编译出来的结构是这样的:

package antlr;

class ActionElement extends AlternativeElement
{
  protected String actionText;
  protected boolean isSemPred = false;

  // ERROR //
  public ActionElement(Grammar paramGrammar, Token paramToken)
  {
    // Byte code:
    //   0: aload_0
    //   1: aload_1
    //   2: invokespecial 1	antlr/AlternativeElement:<init>	(Lantlr/Grammar;)V
    //   5: aload_0
    //   6: iconst_0
    //   7: putfield 2	antlr/ActionElement:isSemPred	Z
    //   10: aload_0
    //   11: aload_2
    //   12: invokevirtual 3	antlr/Token:getText	()Ljava/lang/String;
    //   15: putfield 4	antlr/ActionElement:actionText	Ljava/lang/String;
    //   18: aload_0
    //   19: aload_2
    //   20: invokevirtual 5	antlr/Token:getLine	()I
    //   23: putfield 6	antlr/ActionElement:line	I
    //   26: aload_0
    //   27: aload_2
    //   28: invokevirtual 7	antlr/Token:getColumn	()I
    //   31: putfield 8	antlr/ActionElement:column	I
    //   34: return
  }

  // ERROR //
  public void generate()
  {
    // Byte code:
    //   0: aload_0
    //   1: getfield 9	antlr/ActionElement:grammar	Lantlr/Grammar;
    //   4: getfield 10	antlr/Grammar:generator	Lantlr/CodeGenerator;
    //   7: aload_0
    //   8: invokevirtual 11	antlr/CodeGenerator:gen	(Lantlr/ActionElement;)V
    //   11: return
  }

  // ERROR //
  public Lookahead look(int paramInt)
  {
    // Byte code:
    //   0: aload_0
    //   1: getfield 9	antlr/ActionElement:grammar	Lantlr/Grammar;
    //   4: getfield 12	antlr/Grammar:theLLkAnalyzer	Lantlr/LLkGrammarAnalyzer;
    //   7: iload_1
    //   8: aload_0
    //   9: invokeinterface 13 3 0
    //   14: areturn
  }

  // ERROR //
  public String toString()
  {
    // Byte code:
    //   0: new 14	java/lang/StringBuffer
    //   3: dup
    //   4: invokespecial 15	java/lang/StringBuffer:<init>	()V
    //   7: ldc 16
    //   9: invokevirtual 17	java/lang/StringBuffer:append	(Ljava/lang/String;)Ljava/lang/StringBuffer;
    //   12: aload_0
    //   13: getfield 4	antlr/ActionElement:actionText	Ljava/lang/String;
    //   16: invokevirtual 17	java/lang/StringBuffer:append	(Ljava/lang/String;)Ljava/lang/StringBuffer;
    //   19: aload_0
    //   20: getfield 2	antlr/ActionElement:isSemPred	Z
    //   23: ifeq +8 -> 31
    //   26: ldc 18
    //   28: goto +5 -> 33
    //   31: ldc 19
    //   33: invokevirtual 17	java/lang/StringBuffer:append	(Ljava/lang/String;)Ljava/lang/StringBuffer;
    //   36: invokevirtual 20	java/lang/StringBuffer:toString	()Ljava/lang/String;
    //   39: areturn
  }
}

可以看出方法没有反编译出来,但是在jd-gui中出来的结果是好的。不知道哪里出了问题。

转载于:https://my.oschina.net/yaolifei/blog/205135

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值