2017-08-31 80 views
1

當我安裝插件IntelliJad後,問題出現在我重新啓動Ideal時,任何人都知道它的原因? 我的理想版本是2016.2 enter image description here插件'IntelliJad'未能初始化並將被禁用

+0

你試過https://plugins.jetbrains.com/plugin/6556-intellijad-plus? –

+0

是的,我下載了IntelliJad Plus 13.1.0,並從磁盤安裝插件,選擇intelliJad-plus,jar,但它告訴我'插件'IntelliJad Plus'與此安裝不兼容' –

回答

1

IntelliJad的兼容性表並不意味着它與的IntelliJ 2016.2兼容。

同樣,IntelliJad Plus的兼容性表並不表示它與IntelliJ 2016.2兼容。

上IntelliJad最後更新是在2010年和IntelliJad加上上次更新是在2014年

的IntelliJ已自V14(2014年發佈),內置的Java反編譯器,以便給您正在使用v2016.2 ,我懷疑你不需要需要 IntelliJad。

內置的反編譯器可以只瀏覽到一個類文件裏使用的IntelliJ會自動反編譯的類,並用這樣的標題顯示它:

// 
// Source code recreated from a .class file by IntelliJ IDEA 
// (powered by Fernflower decompiler) 
// 

你可以看到內置的的反編譯插件這裏:

enter image description here

+0

你知道如何使用它嗎?在Ideal中找不到它 –

+1

如果您瀏覽到一個類文件,IntelliJ會自動爲您編譯它。我已經更新了答案,以說明這一點。 – glytching

+1

@XiaojingLu您可以通過命令行使用IntelliJ IDEA反編譯器批量反編譯JAR:'java -cp \ plugins \ java-decompiler \ lib \ java-decompiler.jar org.jetbrains.java.decompiler.main.decompiler。 ConsoleDecompiler '。有關命令行選項,請參閱https://github.com/JetBrains/intellij-community/tree/master/plugins/java-decompiler/engine。 – CrazyCoder