How to convert a Kotlin source file to a Java source file
Asked Answered
C

8

536

I have a Kotlin source file, but I want to translate it to Java.

How can I convert Kotlin to Java source?

Cornwallis answered 22/1, 2016 at 23:7 Comment(9)
I'm pretty sure no automated tool has been built for this yet. You can build it first!Accomplish
It's very likely that you will end up with an ugly and unmaintainable Java class which won't run if you don't have the Kotlin standard library in the classpath. What's the point?Merriweather
Consider the j2objC translator. Would be great if you could do kotlin -> Java -> objCHonorine
@Patrick Kotlin/Native now supports interop with Objective-C and multi platform projects, so you can share code now ;)Hydrogenolysis
The goal of the "Decompile" button is to help people understand how the Kotlin compilation works. The Java code it generates is not intended for use as actual production code (and is quite poorly suited for that - to begin with, it does not always compile...)Merriweather
Decompile Kotlin to Java is currently enabled only for compiled Kotlin classes.Sandwich
@Merriweather how about for somebody who doesn't know Kotlin or have time to learn it and has got some sample code in that language which has some functionality they need to understand to get their Java code to work?Detain
@Detain As you can imagine, the goal of the Kotlin team is not to help people avoid learning Kotlin. Learning enough to understand what a code sample does will not take you long.Merriweather
We have to convert Kotlin to Java in order to read crash-log, see #52970458.Sawbuck
H
536

As @Vadzim said, in IntelliJ or Android Studio, you just have to do the following to get java code from kotlin:

  1. Menu > Tools > Kotlin > Show Kotlin Bytecode
  2. Click on the Decompile button
  3. Copy the java code

Update:

With a recent version (1.2+) of the Kotlin plugin you also can directly do Menu > Tools > Kotlin -> Decompile Kotlin to Java.

Hydrogenolysis answered 23/11, 2016 at 11:6 Comment(6)
Is the Java output not ugly?Inconvincible
@Inconvincible Just like most decompiling outputs, it is, of courseHydrogenolysis
converted from kotlin to java. But its showing extra code. the code that i even never wrote or heardNebulize
@nauman Because you wrote Kotlin code, not Java. Kotlin features rely on bytecode, and doesn't necessarily translates to Java like you would expect. There's also extra checks, for nullability primarily, and synthetic methods and fields.Hydrogenolysis
that option is not enabled, it is coloured grey. How do i enable it.Terwilliger
@VikasPandey, Decompile Kotlin to Java is currently enabled only for compiled Kotlin classes.Sandwich
T
46

you can go to Tools > Kotlin > Show kotlin bytecode

enter image description here

enter image description here

enter image description here

Thematic answered 25/10, 2018 at 6:52 Comment(1)
Currently it is disabled. But you can use the answer of @ARGeo (https://mcmap.net/q/50297/-how-to-convert-a-kotlin-source-file-to-a-java-source-file).Sawbuck
T
45

You can compile Kotlin to bytecode, then use a Java disassembler.

The decompiling may be done inside IntelliJ Idea, or using FernFlower https://github.com/fesh0r/fernflower (thanks @Jire)

There was no automated tool as I checked a couple months ago (and no plans for one AFAIK)

Trouvaille answered 23/1, 2016 at 6:39 Comment(6)
As a side note, be aware that generics in generated code can cause compiler warnings, since Kotlin allows some things that the java compiler doesn't. It still works in byte code, though.Mustache
@Trouvaille I think he's referring to reified generics, which aren't a possibility in pure Java.Heliometer
@Heliometer reified generics are always inlined, so from Java they look like normal class referencesTrouvaille
This is what I'm talking about #34762529Mustache
IntelliJ IDEA 2016.2: Menu / Tools / Kotlin / Show Kotlin Bytecode, then click Decompile buttonEqually
Yes, but simpler solution is online (old known service): javadecompilers.comCinquecento
S
21

In Android Studio, to convert a Kotlin source file to a Java source file you need to:

  1. Press Cmd-Shift-A on a Mac, or press Ctrl-Shift-A on a Windows machine.

  2. Type the action you're looking for: Kotlin Bytecode and choose Show Kotlin Bytecode from menu.

enter image description here

  1. Press Decompile button on the top of Kotlin Bytecode panel.

enter image description here

  1. Now you get a Decompiled Java file along with Kotlin file in a adjacent tab:

enter image description here

Shrinkage answered 9/1, 2019 at 18:19 Comment(1)
Thank you, sir! This buggy AS again changed normal tools (Tools > Kotlin > ...).Sawbuck
H
11

I compile Kotlin to byte code and then de-compile that to Java. I compile with the Kotlin compiler and de-compile with cfr.

My project is here.

This allows me to compile this:

package functionsiiiandiiilambdas.functions.p01tailiiirecursive

tailrec fun findFixPoint(x: Double = 1.0): Double =
        if (x == Math.cos(x)) x else findFixPoint(Math.cos(x))

To this:

package functionsiiiandiiilambdas.functions.p01tailiiirecursive;

public final class ExampleKt {

    public static final double findFixPoint(double x) {
        while (x != Math.cos(x)) {
            x = Math.cos(x);
        }
        return x;
    }

    public static /* bridge */ /* synthetic */ double findFixPoint$default(double d, int n, Object object) {
        if ((n & 1) != 0) {
            d = 1.0;
        }
        return ExampleKt.findFixPoint(d);
    }
}
Hutchins answered 21/8, 2018 at 8:16 Comment(0)
K
7

As @louis-cad mentioned "Kotlin source -> Java's byte code -> Java source" is the only solution so far.

But I would like to mention the way, which I prefer: using Jadx decompiler for Android.

It allows to see the generates code for closures and, as for me, resulting code is "cleaner" then one from IntelliJ IDEA decompiler.

Normally when I need to see Java source code of any Kotlin class I do:

  • Generate apk: ./gradlew assembleDebug
  • Open apk using Jadx GUI: jadx-gui ./app/build/outputs/apk/debug/app-debug.apk

In this GUI basic IDE functionality works: class search, click to go declaration. etc.

Also all the source code could be saved and then viewed using other tools like IntelliJ IDEA.

Kellyekellyn answered 11/4, 2018 at 13:3 Comment(1)
Good one, it's available through Homebrew: brew install jadxPetes
M
4
  1. open kotlin file in android studio
  2. go to tools -> kotlin ->kotlin bytecode
  3. in the new window that open beside your kotlin file , click the decompile button . it will create java equivalent of your kotlin file .
Magic answered 5/5, 2018 at 10:54 Comment(0)
N
4

Java and Kotlin runs on Java Virtual Machine (JVM).

Converting a Kotlin file to Java file involves two steps i.e. compiling the Kotlin code to the JVM bytecode and then decompile the bytecode to the Java code.

Steps to convert your Kotlin source file to Java source file:

  1. Open your Kotlin project in the Android Studio.
  2. Then navigate to Tools -> Kotlin -> Show Kotlin Bytecode.

enter image description here

  1. You will get the bytecode of your Kotin file.
  2. Now click on the Decompile button to get your Java code from the bytecode
Ness answered 4/1, 2020 at 6:7 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.