<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    Feeling

        三人行,必有我?guī)熝?/p>

       ::  :: 新隨筆 :: 聯(lián)系 ::  :: 管理 ::
      185 隨筆 :: 0 文章 :: 392 評(píng)論 :: 0 Trackbacks
    Eclipse Class Decompiler是一款Eclipse插件,整合了多種反編譯器,和Eclipse Class Viewer無(wú)縫集成,能夠很方便的使用插件查看類(lèi)庫(kù)源碼,進(jìn)行Debug調(diào)試。
    同時(shí)還提供了在線(xiàn)自動(dòng)查找源代碼,查看Class二進(jìn)制字節(jié)碼的功能。 


    Eclipse Class Decompiler對(duì)JDK的最低要求為JDK1.6, 能反編譯和debug各版本的Class文件,支持JDK8的Lambda語(yǔ)法,同時(shí)支持中文等非Ascii碼字符集的解析,支持Eclipse 3.6及以上所有版本的Eclipse。

    本插件支持Windows,Linux,Macosx 32位及64位操作系統(tǒng)。

    Github項(xiàng)目地址為:https://github.com/cnfree/Eclipse-Class-Decompiler

    請(qǐng)通過(guò)以下地址選擇一個(gè)可用的源在線(xiàn)安裝:

    http://cnfree.github.io/Eclipse-Class-Decompiler/update
    http://raw.githubusercontent.com/cnfree/eclipse/master/decompiler/update/
    http://www.cpupk.com/decompiler/update/

    離線(xiàn)包下載地址:
    https://github.com/cnfree/Eclipse-Class-Decompiler/releases/download/v2.10.0/eclipse-class-decompiler-update_v2.10.0.zip
     
    插件使用說(shuō)明:

    下圖為Eclipse Class Decompiler的首選項(xiàng)頁(yè)面,可以選擇缺省的反編譯器工具,并進(jìn)行反編譯器的基本設(shè)置。缺省的反編譯工具為JD-Core,JD-Core更為先進(jìn)一些,支持泛型、Enum、注解等JDK1.5以后才有的新語(yǔ)法。

    首選項(xiàng)配置選項(xiàng):
    1.重用緩存代碼:只會(huì)反編譯一次,以后每次打開(kāi)該類(lèi)文件,都顯示的是緩存的反編譯代碼。
    2.忽略已存在的源代碼:若未選中,則查看Class文件是否已綁定了Java源代碼,如果已綁定,則顯示Java源代碼,如果未綁定,則反編譯Class文件。若選中此項(xiàng),則忽略已綁定的Java源代碼,顯示反編譯結(jié)果。
    3.顯示反編譯器報(bào)告:顯示反編譯器反編譯后生成的數(shù)據(jù)報(bào)告及異常信息。
    4.使用Eclipse代碼格式化工具:使用Eclipse格式化工具對(duì)反編譯結(jié)果重新格式化排版,反編譯整個(gè)Jar包時(shí),此操作會(huì)消耗一些時(shí)間。
    5.使用Eclipse成員排序:使用Eclipse成員排序?qū)Ψ淳幾g結(jié)果重新格式化排版,反編譯整個(gè)Jar包時(shí),此操作會(huì)消耗大量時(shí)間。
    6.以注釋方式輸出原始行號(hào)信息:如果Class文件包含原始行號(hào)信息,則會(huì)將行號(hào)信息以注釋的方式打印到反編譯結(jié)果中。
    7.根據(jù)行號(hào)對(duì)齊源代碼以便于調(diào)試:若選中該項(xiàng),插件會(huì)采用AST工具分析反編譯結(jié)果,并根據(jù)行號(hào)信息調(diào)整代碼順序,以便于Debug過(guò)程中的單步跟蹤調(diào)試。
    8.設(shè)置類(lèi)反編譯查看器作為缺省的類(lèi)文件編輯器:默認(rèn)為選中,將忽略Eclipse自帶的Class Viewer,每次Eclipse啟動(dòng)后,默認(rèn)使用本插件提供的類(lèi)查看器打開(kāi)Class文件。



    插件提供了系統(tǒng)菜單,工具欄,當(dāng)打開(kāi)了插件提供的類(lèi)反編譯查看器后,會(huì)激活菜單和工具欄選項(xiàng),可以方便的進(jìn)行首選項(xiàng)配置,切換反編譯工具重新反編譯,以及導(dǎo)出反編譯結(jié)果。






    類(lèi)反編譯查看器右鍵菜單包含了Eclipse自帶類(lèi)查看器右鍵菜單的全部選項(xiàng),并增加了一個(gè)“導(dǎo)出反編譯源代碼”菜單項(xiàng)。



    打開(kāi)項(xiàng)目路徑下的Class文件,如果設(shè)置類(lèi)反編譯查看器為缺省的查看器,直接雙擊Class文件即可,如果沒(méi)有設(shè)置為缺省查看器,可以使用右鍵菜單進(jìn)行查看。




    同時(shí)插件也支持直接將外部的Class文件拖拽到Eclipse編輯器中進(jìn)行反編譯。


    Eclipse Class Decompiler插件也提供了反編譯整個(gè)Jar文件或者Java包的反編譯。該操作支持Package Explorer對(duì)包顯示布局的操作,如果是平鋪模式布局,則導(dǎo)出的源代碼不包含子包,如果是層級(jí)模式布局,則導(dǎo)出選中的包及其所有的子包。




    Debug調(diào)試:可以在首選項(xiàng)選中對(duì)齊行號(hào)進(jìn)行單步跟蹤調(diào)試,和普通的包含源代碼時(shí)的調(diào)試操作完全一致,同樣的也可以設(shè)置斷點(diǎn)進(jìn)行跟蹤。當(dāng)透視圖為Debug時(shí),插件自動(dòng)生成行號(hào)并進(jìn)行對(duì)齊方便調(diào)試代碼,無(wú)需進(jìn)行任何設(shè)置。


    博文地址:http://www.tkk7.com/cnfree/archive/2012/10/30/390457.html

    評(píng)論

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2012-10-31 09:50 Clover
    很不錯(cuò)!  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2012-10-31 12:25 xz
    Cannot complete the install because some dependencies are not satisfiable
    org.sf.feeling.decompiler.feature.group [1.0.2.201210280126] cannot be installed in this environment because its filter is not applicable.  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2012-11-04 13:52 三人行,必有我?guī)熝?/a>
    @xz 已增加對(duì)Linux和Macosx操作系統(tǒng)的支持。  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2012-11-08 10:08 Melanzpl
    安裝完成后,啟動(dòng)myeclipse會(huì)自動(dòng)關(guān)閉。。。  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2012-11-08 10:43 三人行,必有我?guī)熝?/a>
    @Melanzpl

    MyEclipse加上啟動(dòng)參數(shù)-clean啟動(dòng),這是Eclipse Update的bug導(dǎo)致的。
      
    回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2012-11-29 10:38 澤林
    朋友,你是不是sodi的陳超???  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件[未登錄](méi) 2013-01-08 15:07 Andy
    我安裝了,沒(méi)有報(bào)錯(cuò),但是Class沒(méi)有被反編譯;
    我想請(qǐng)問(wèn),這個(gè)還要設(shè)置嗎,比如安裝Jad?如何設(shè)置?  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2013-01-31 15:58 輕輕巧巧
    沒(méi)64位系統(tǒng)的嗎? 64位JDK不能用啊  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2013-01-31 16:15 輕輕巧巧
    64 JDK可以用?。。?!8錯(cuò)?。?!  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2013-03-15 15:51 xxoox
    非常棒  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2013-04-06 21:06 ZZZZ
    您好!安裝完插件后在eclipse和myeclipse不能debug變量,watch變量報(bào)錯(cuò),錯(cuò)誤信息如下,“<error(s)_during_the_evaluation>”,請(qǐng)問(wèn)是我哪配置不正確嗎?  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2013-04-06 21:15 ZZZZ
    如果方便,您可以通過(guò)郵箱QQ:1009901014聯(lián)系我。多謝!  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2013-04-07 17:49 三人行,必有我?guī)熝?/a>
    @ZZZZ

    debug變量,需要你的jar的編譯支持變量表,但是一般ant默認(rèn)編譯是不支持變量表的,就會(huì)出現(xiàn)你的問(wèn)題,需要一定的技巧來(lái)解決,比如直接訪問(wèn)方法的參數(shù),看參數(shù)的內(nèi)部結(jié)構(gòu)。  
    回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2013-04-07 20:32 ZZZZ
    @三人行,必有我?guī)熝?br>老師,關(guān)于解決的技巧,能否再詳細(xì)點(diǎn)呢。能提供相應(yīng)的關(guān)鍵詞,放在在google上搜索就好。多謝,多謝。  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件[未登錄](méi) 2013-04-17 13:15 richard
    您好,有個(gè)疑問(wèn)想請(qǐng)教。我有jd-gui.exe 對(duì)應(yīng)jd-core為version 0.6.0反編譯class,生成的java有對(duì)應(yīng)的屬性,但用您開(kāi)發(fā)的插件,有個(gè)別屬性在反編譯出來(lái)的java程序中沒(méi)有,請(qǐng)問(wèn)這個(gè)情況我該如何解決呢?  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2013-04-17 19:42 三人行,必有我?guī)熝?/a>
    @richard

    已經(jīng)用的是最新版的jd-core了,最后一次更新是2009年……

    一般來(lái)說(shuō)不會(huì)出現(xiàn)屬性都反編譯不出來(lái)的情況啊。  
    回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2013-04-22 11:24 青菜
    之前安裝了1.02版本無(wú)法啟動(dòng),來(lái)這里看到加-clear參數(shù)后正常啟動(dòng);
    接著多手卸載了1.02,重啟,再裝1.03,然后就是啟動(dòng)不了了,有沒(méi)有-clear參數(shù)都不行。系統(tǒng)win8 x64.

    看不懂錯(cuò)誤信息,估計(jì)這段給你有用。
    -------------------------------------------------------
    siginfo: ExceptionCode=0xc0000005, writing address 0x00000000
    ...
    Stack: [0x37e10000,0x37f10000], sp=0x37f0f9d8, free space=1022k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [ntdll.dll+0x61255]
    C [ntdll.dll+0x4f489]
    C [MSVCR71.dll+0x3593]
    C [zip.dll+0x784d]
    J java.util.zip.ZipFile.close()V
    j org.eclipse.osgi.baseadaptor.bundlefile.ZipBundleFile.close()V+56
    j org.eclipse.osgi.baseadaptor.bundlefile.MRUBundleFileList.dispatchEvent(Ljava/lang/Object;Ljava/lang/Object;ILorg/eclipse/osgi/baseadaptor/bundlefile/BundleFile;)V+29
    j org.eclipse.osgi.baseadaptor.bundlefile.MRUBundleFileList.dispatchEvent(Ljava/lang/Object;Ljava/lang/Object;ILjava/lang/Object;)V+15
    J org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(Ljava/util/Set;Lorg/eclipse/osgi/framework/eventmgr/EventDispatcher;ILjava/lang/Object;)V
    j org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run()V+26
    v ~StubRoutines::call_stub

    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    J java.util.zip.ZipFile.close(J)V
    J java.util.zip.ZipFile.close()V
    j org.eclipse.osgi.baseadaptor.bundlefile.ZipBundleFile.close()V+56
    j org.eclipse.osgi.baseadaptor.bundlefile.MRUBundleFileList.dispatchEvent(Ljava/lang/Object;Ljava/lang/Object;ILorg/eclipse/osgi/baseadaptor/bundlefile/BundleFile;)V+29
    j org.eclipse.osgi.baseadaptor.bundlefile.MRUBundleFileList.dispatchEvent(Ljava/lang/Object;Ljava/lang/Object;ILjava/lang/Object;)V+15
    J org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(Ljava/util/Set;Lorg/eclipse/osgi/framework/eventmgr/EventDispatcher;ILjava/lang/Object;)V
    j org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run()V+26
    v ~StubRoutines::call_stub
    ---------------------------------------------  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2013-04-22 11:30 青菜
    Failed to load JavaHL Library.
    These are the errors that were encountered:
    D:\Program Files\MyEclipse\MyEclipse 10\configuration\org.eclipse.osgi\bundles\1186\1\.cp\libapr-1.dll: %1 不是有效的 Win32 應(yīng)用程序。
    D:\Program Files\MyEclipse\MyEclipse 10\configuration\org.eclipse.osgi\bundles\1186\1\.cp\libapriconv-1.dll: Can't find dependent libraries
    D:\Program Files\MyEclipse\MyEclipse 10\configuration\org.eclipse.osgi\bundles\1186\1\.cp\libaprutil-1.dll: Can't find dependent libraries
    D:\Program Files\MyEclipse\MyEclipse 10\configuration\org.eclipse.osgi\bundles\1186\1\.cp\libsvn_subr-1.dll: Can't find dependent libraries
    D:\Program Files\MyEclipse\MyEclipse 10\configuration\org.eclipse.osgi\bundles\1186\1\.cp\libsvn_delta-1.dll: Can't find dependent libraries
    D:\Program Files\MyEclipse\MyEclipse 10\configuration\org.eclipse.osgi\bundles\1186\1\.cp\libsvn_diff-1.dll: Can't find dependent libraries
    D:\Program Files\MyEclipse\MyEclipse 10\configuration\org.eclipse.osgi\bundles\1186\1\.cp\libsvn_wc-1.dll: Can't find dependent libraries
    D:\Program Files\MyEclipse\MyEclipse 10\configuration\org.eclipse.osgi\bundles\1186\1\.cp\libsvn_fs-1.dll: Can't find dependent libraries
    D:\Program Files\MyEclipse\MyEclipse 10\configuration\org.eclipse.osgi\bundles\1186\1\.cp\libsvn_repos-1.dll: Can't find dependent libraries
    D:\Program Files\MyEclipse\MyEclipse 10\configuration\org.eclipse.osgi\bundles\1186\1\.cp\libsvn_ra-1.dll: Can't find dependent libraries
    D:\Program Files\MyEclipse\MyEclipse 10\configuration\org.eclipse.osgi\bundles\1186\1\.cp\libsvn_client-1.dll: Can't find dependent libraries
    D:\Program Files\MyEclipse\MyEclipse 10\configuration\org.eclipse.osgi\bundles\1186\1\.cp\libsvnjavahl-1.dll: Can't find dependent libraries
    no svnjavahl-1 in java.library.path
    no svnjavahl in java.library.path
    java.library.path = D:\Program Files\MyEclipse\MyEclipse 10;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;D:/Program Files/MyEclipse/Common/binary/com.sun.java.jdk.win32.x86_1.6.0.013/jre/bin/client;D:/Program Files/MyEclipse/Common/binary/com.sun.java.jdk.win32.x86_1.6.0.013/jre/bin;D:/Program Files/MyEclipse/Common/binary/com.sun.java.jdk.win32.x86_1.6.0.013/jre/lib/i386;c:\program files (x86)\imagemagick-6.3.9-q16;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PrivateAssemblies\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files\TortoiseSVN\binTortoiseSVN\bin;D:\Program Files\Java\jdk1.7.0_06/bin;D:\Android\android-sdk\tools;C:\Program Files (x86)\Common Files\TTKN\Bin  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2013-04-22 12:27 三人行,必有我?guī)熝?/a>
    @青菜

    Failed to load JavaHL Library.

    這是SVN的Native庫(kù)發(fā)生錯(cuò)誤……和反編譯插件無(wú)關(guān)。  
    回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2013-04-22 12:57 青菜
    @三人行,必有我?guī)熝?br>
    給你發(fā)了評(píng)論后它自己又能啟動(dòng)了,但是不夠一分鐘又關(guān),接著再次啟動(dòng)直接把反編譯插件刪掉,恢復(fù)正常。

    然后不用配置這種安裝方式安裝,直接把壓縮包扔到MyEclipse 10\dropins里面,啟動(dòng),正常。

    最后發(fā)現(xiàn)org.eclipse.osgi\bundles\1186\1\.cp\libapr-1.dll不知道咋回事的竟然是0字節(jié),對(duì)他沒(méi)轍直接刪掉,現(xiàn)在貌似一切正常了。

    謝謝你的插件啦!贊一個(gè)!  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2013-05-30 14:06 beatus
    這個(gè)真的不需要其他插件依賴(lài)嗎,我下載了離線(xiàn)包~無(wú)論使用link方式安裝 還是new software->導(dǎo)入zip包 ,安裝成功(可以在eclipse的preference看到配置界面)后沒(méi)法使用,toolbar中“反編譯器”目錄下的,“Jad”、“Jad-Core"以及”導(dǎo)出反編譯代碼“選項(xiàng)都為灰色,右擊class文件,open with”類(lèi)反編譯查看器“,得到的結(jié)果與系統(tǒng)默認(rèn)的”class file viewer“打開(kāi)效果一樣,都是”source not found“……請(qǐng)問(wèn)這是什么原因?。恐x謝  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2013-08-28 21:29 田維術(shù)
    您好,插件做得非常不錯(cuò),但是我有個(gè)建議,能不能設(shè)置一個(gè)默認(rèn)的源碼導(dǎo)出路徑不用每次都選,然后自動(dòng)關(guān)聯(lián)源碼?這樣調(diào)試就不用手動(dòng)attach源碼了  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2013-11-02 19:04 hacxer
    Eclipse Class Decompiler——Java反編譯插件這個(gè)反編譯軟件非常不錯(cuò),當(dāng)是不支持 Eclipse 4.x版本,安裝后不能啟動(dòng),即使加了-clear也能啟動(dòng)  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2013-11-02 19:04 hacxer
    希望作者可以繼續(xù)更新,或者把這個(gè)軟件開(kāi)源,讓社區(qū)來(lái)維護(hù)它  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2013-12-17 10:44 彭正一
    Could not open the editor: Editor could not be initialized.
    java.lang.UnsatisfiedLinkError: D:\MyEclipse 10\configuration\org.eclipse.osgi\bundles\1166\1\.cp\win32\x86\jd-eclipse.dll: このアプリケーションの構(gòu)成が正しくないため、アプリケーションを開(kāi)始できませんでした。アプリケーションを再度インストールすることにより問(wèn)題が解決する場(chǎng)合があります。
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1778)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1674)
    at java.lang.Runtime.load0(Runtime.java:770)
    at java.lang.System.load(System.java:1005)
    at jd.ide.eclipse.editors.JDSourceMapper.loadLibrary(JDSourceMapper.java:45)
    at org.sf.feeling.decompiler.jdcore.JDCoreSourceMapper.findSource(JDCoreSourceMapper.java:61)
    at org.sf.feeling.decompiler.jdcore.JDCoreSourceMapper.findSource(JDCoreSourceMapper.java:217)
    at org.sf.feeling.decompiler.editor.DecompilerSourceMapper.findSource(DecompilerSourceMapper.java:77)
    at org.sf.feeling.decompiler.editor.JavaDecompilerClassFileEditor.doOpenBuffer(JavaDecompilerClassFileEditor.java:74)
    at org.sf.feeling.decompiler.editor.JavaDecompilerClassFileEditor.doOpenBuffer(JavaDecompilerClassFileEditor.java:51)
    at org.sf.feeling.decompiler.editor.JavaDecompilerClassFileEditor.doOpenBuffer(JavaDecompilerClassFileEditor.java:42)
    at org.sf.feeling.decompiler.editor.JavaDecompilerClassFileEditor.doSetInput(JavaDecompilerClassFileEditor.java:156)
    at org.eclipse.ui.texteditor.AbstractTextEditor$19.run(AbstractTextEditor.java:3200)
    at org.eclipse.jface.operation.ModalContext.runInCurrentThread(ModalContext.java:464)
    at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:372)
    at org.eclipse.jface.window.ApplicationWindow$1.run(ApplicationWindow.java:759)
    at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
    at org.eclipse.jface.window.ApplicationWindow.run(ApplicationWindow.java:756)
    at org.eclipse.ui.internal.WorkbenchWindow.run(WorkbenchWindow.java:2642)
    at org.eclipse.ui.texteditor.AbstractTextEditor.internalInit(AbstractTextEditor.java:3218)
    at org.eclipse.ui.texteditor.AbstractTextEditor.init(AbstractTextEditor.java:3245)
    at org.eclipse.ui.internal.EditorManager.createSite(EditorManager.java:828)
    at org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:647)
    at org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:465)
    at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:595)
    at org.eclipse.ui.internal.EditorReference.getEditor(EditorReference.java:289)
    at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2945)
    at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2850)
    at org.eclipse.ui.internal.WorkbenchPage.access$11(WorkbenchPage.java:2842)
    at org.eclipse.ui.internal.WorkbenchPage$10.run(WorkbenchPage.java:2793)
    at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
    at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2789)
    at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2773)
    at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2764)
    at org.eclipse.jdt.internal.ui.javaeditor.EditorUtility.openInEditor(EditorUtility.java:368)
    at org.eclipse.jdt.internal.ui.javaeditor.EditorUtility.openInEditor(EditorUtility.java:174)
    at org.eclipse.jdt.ui.actions.OpenAction.run(OpenAction.java:249)  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2013-12-17 10:45 彭正一
    這個(gè)出錯(cuò)了@彭正一
      回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2013-12-25 11:51 llp20_2000
    樓主 feeling,強(qiáng)烈支持  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件[未登錄](méi) 2014-01-13 15:48 SKY
    有沒(méi)有英文的版本。。。--強(qiáng)迫癥患者一個(gè)  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2014-02-11 21:47 嗷嗷
    好人啊 lzw5
    建議lz將離線(xiàn)地址更新在sourceforge download連接下,那個(gè)網(wǎng)站好不友好  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件[未登錄](méi) 2014-03-21 02:15 leo
    lz是個(gè)大好人
    我用你的插件能成功在設(shè)定的斷點(diǎn)處斷到
    但是在斷點(diǎn)處, 我點(diǎn)擊試圖進(jìn)入反編譯出來(lái)的函數(shù)邏輯
    一直提示我"Source not found"
    即使我怎么"Edit Source Lookup path"
    也一直不成功

    BTW,
    我的jar包里面都是被混淆過(guò)的class, 這個(gè)有關(guān)系嗎?  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件[未登錄](méi) 2014-03-21 02:19 leo
    lz是個(gè)大好人
    我用你的插件能成功在設(shè)定的斷點(diǎn)處斷到
    但是在斷點(diǎn)處, 我點(diǎn)擊試圖進(jìn)入反編譯出來(lái)的函數(shù)邏輯
    一直提示我"Source not found"
    即使我怎么"Edit Source Lookup path"
    也一直不成功

    BTW,
    我的jar包里面都是被混淆過(guò)的class, 這個(gè)有關(guān)系嗎?
    我的qq 22584960  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件[未登錄](méi) 2014-04-16 10:43 aaa
    @leo
    無(wú)恥,把別人的代碼編譯一下拿出來(lái)當(dāng)說(shuō)是自己開(kāi)發(fā)的,又不說(shuō)明原始作者  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2014-04-16 10:56 三人行,必有我?guī)熝?/a>
    @aaa

    我代碼是開(kāi)源的,你自己說(shuō)我編譯誰(shuí)的代碼,比較一下代碼相似度是多少。我寫(xiě)的開(kāi)源軟件又不是一個(gè)兩個(gè),哪個(gè)不是原創(chuàng)的。

    JAD和JD-Core的反編譯插件都有,有誰(shuí)整合到一起了?

    說(shuō)話(huà)請(qǐng)負(fù)責(zé)任。  
    回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2014-05-16 10:06 qiyi
    @三人行,必有我?guī)熝?br>Hello, 作者你好。
    最新的JD-GUI已經(jīng)集成了 jd-core 0.7 了,在部分類(lèi)的反編譯上(上面有評(píng)論提到的類(lèi)的屬性展示上)有提升改變,不知 decompiler 插件何時(shí)可以集成最新的 Jd-core?又或者能否增加特性讓用戶(hù)獨(dú)立選擇jd-core版本,自己升級(jí)?  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件[未登錄](méi) 2014-06-03 09:25 li
    Eclipse4.3不能用,求解  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2014-06-05 10:35 VL
    MAC OSX 10.9 eclipse Kepler Service Release 2可用,謝謝分享!!  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2014-10-23 00:35 shangxp
    64位JDK確實(shí)不能使用,安裝到最后一步報(bào)錯(cuò)  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件[未登錄](méi) 2015-01-18 17:10 li
    有沒(méi)有直接放入eclipse\dropins下面的方式?如果無(wú)法訪問(wèn)http://feeling.sourceforge.net/update
    離線(xiàn)方式也將安裝錯(cuò)誤  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2015-02-08 07:55 才開(kāi)始用mac
    mac osx 10 eclipse luna ,可以安裝,無(wú)論離線(xiàn)還是在線(xiàn),貌似都要vpn,才可以,估計(jì)依賴(lài)包選到sourceforge,被墻了,vpn ok  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2015-02-08 07:56 才開(kāi)始用mac
    @li
    vpn后再試,應(yīng)該ok@li
      回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件 2016-03-07 12:40 mttsui
    正好需要,普通場(chǎng)景試了一下,還是蠻好用的,基于反編譯的debug更輕松咯。。

    謝謝樓主的無(wú)私奉獻(xiàn)。  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件[未登錄](méi) 2016-04-29 11:59 song
    An error occurred while collecting items to be installed
    session context was:(profile=DefaultProfile, phase=org.eclipse.equinox.internal.p2.engine.phases.Collect, operand=, action=).
    Problems downloading artifact: osgi.bundle,org.sf.feeling.decompiler.win32,1.0.3.201211040213.
    MD5 hash is not as expected. Expected: c1e46591ba814198424c08971629acc1 and found a050a8804d7545cba40dc1a33714c5c0.  回復(fù)  更多評(píng)論
      

    # re: 【原創(chuàng)】Eclipse Class Decompiler——Java反編譯插件[未登錄](méi) 2016-04-29 12:41 song
    @song
    works fine after remove jad eclipse plugin. thanks.  回復(fù)  更多評(píng)論
      


    只有注冊(cè)用戶(hù)登錄后才能發(fā)表評(píng)論。


    網(wǎng)站導(dǎo)航:
     
    GitHub |  開(kāi)源中國(guó)社區(qū) |  maven倉(cāng)庫(kù) |  文件格式轉(zhuǎn)換 
    主站蜘蛛池模板: 免费在线看黄的网站| 97在线免费视频| 一道本不卡免费视频| 国产精品免费在线播放| 免费A级毛片无码A∨中文字幕下载| 毛片免费全部播放无码| 青青视频观看免费99| 四虎影视免费永久在线观看 | 成人精品一区二区三区不卡免费看| 日韩电影免费观看| 免费可以看黄的视频s色| 国产精品二区三区免费播放心| 亚洲一区精品伊人久久伊人| 亚洲午夜精品久久久久久人妖| 亚洲欧美日本韩国| 中文字幕成人免费高清在线视频| 国产精品久久永久免费| 国产精品久久香蕉免费播放| 亚洲AV无码久久精品色欲| 亚洲黄页网在线观看| 特级毛片aaaa免费观看| 18观看免费永久视频| 亚洲AV无码一区二三区| 67pao强力打造67194在线午夜亚洲 | 亚洲国产精品一区第二页 | 真人无码作爱免费视频| 久久这里只精品热免费99| 四虎免费大片aⅴ入口| 亚洲精品~无码抽插| 亚洲啪AV永久无码精品放毛片| a级毛片100部免费观看| 成年男女免费视频网站| 久久亚洲国产中v天仙www| 亚洲av乱码一区二区三区香蕉| 搜日本一区二区三区免费高清视频 | 亚洲熟妇久久精品| 免费一级毛片无毒不卡| 国产乱子影视频上线免费观看| 亚洲A∨无码一区二区三区| WWW亚洲色大成网络.COM| 亚洲视频在线免费播放|