英文:
Where is the IntelliJ Decompile Button (Converting Kotlin Code to Java)?
问题
我有一个 Kotlin 项目,我想使用 IntelliJ 将其转换为 Java 代码。现在我在 这里 看到,我只需要执行以下步骤:
菜单 > 工具 > Kotlin > 显示 Kotlin 字节码
- 点击“反编译”按钮
- 复制 Java 代码
所以我试着按照这个步骤去做,并且已经成功查看了 Kotlin 字节码 - 但是我想知道反编译按钮在哪里?不幸的是,我在谷歌上搜索过,但找不到它 - 或许我只是眼瞎,它很明显?
当我进入 工具 > Kotlin
,然后 反编译 Kotlin 为 Java
选项是灰色的(如果那就是到处提到的反编译按钮)。
有人能帮助我解决这个问题吗?
我正在使用 IntelliJ Ultimate。
编辑:
当我点击“显示 Kotlin 字节码”时,会显示如下面板:
英文:
I have a Kotlin project that I'd like to convert into Java-Code using IntelliJ. Now I read that all I need to do is:
Menu > Tools > Kotlin > Show Kotlin Bytecode
- Click on the Decompile button
- Copy the java code
So I tried to follow that and have been able to successfully view Kotlin Bytecode - yet I am wondering where the decompile Button is? Sadly I tried searching it in Google and I could not find it - probably I am just blind and it is obvious?
When I go into Tools > Kotlin
then Decompile Kotlin to Java
is greyed (in case that is the decompile button that is mentioned everywhere).
Can someone help me out on that?
I am running on IntelliJ Ultimate.
Edit:
This panel is shown when I press Show Kotlin Bytecode
:
答案1
得分: 1
Decompile
按钮位于Kotlin Bytecode
面板的顶部工具栏中,当您选择Show Kotlin Bytecode
时会打开该面板。
英文:
The Decompile
button is in the top bar of the Kotlin Bytecode
panel which opens when you select Show Kotlin Bytecode
.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论