Java Decompilers
javadecompilers.com
Java decompiler online
Java decompilers online: *JAD, *JDCore, *Procyon, *Fernflower, *CFR. โ A user interface to extract source code from .class and .jar โbinaryโ files.
Decompiler.com
decompiler.com
Java decompiler online / APK decompiler - Decompiler.com
Online decompiler for Java, Android, Python and C#.
What is the difference between the decompiler engines?
Each engine has different strengths. CFR is reliable for most Java versions. JADX excels at Android APKs. Vineflower (Quiltflower fork) handles modern Java well. Procyon is solid for older bytecode. JD-Core is fast for quick inspections.
endless-forge.com
endless-forge.com โบ en โบ tools โบ java โบ decompiler
Java Decompiler Online: Decompile .class & .jar Files | Endless Forge
How do I decompile a JAR file online?
Upload your .jar file, wait for decompilation to complete, then download the generated source ZIP.
jar.tools
jar.tools โบ jar-decompiler
Java Decompiler Online | Decompile JAR to Java Source
Can I decompile obfuscated code?
Yes, but obfuscated code will produce decompiled output with meaningless variable and class names. The logic is recovered but human readability depends on how aggressively the code was obfuscated.
endless-forge.com
endless-forge.com โบ en โบ tools โบ java โบ decompiler
Java Decompiler Online: Decompile .class & .jar Files | Endless Forge
Videos
Jdec
jdec.app
JDec - Java Decompiler Online
JDec is a online Java decompiler that provides a fast way to decompile JAR files. Instant access to the files, no need to wait. Also supports downloading decompiled java code.
Javainuse
javainuse.com โบ decomp
Java Decompiler Online
A Java decompiler is a specialized tool that reconstructs Java source code from compiled bytecode (.class files). This online decompiler uses CFR (Class File Reader), one of the most advanced Java decompilers, to reverse-engineer bytecode into human-readable Java source code.
Java Decompiler
java-decompiler.github.io
Java Decompiler
The โJava Decompiler projectโ aims to develop tools in order to decompile and analyze Java 5 โbyte codeโ and the later versions.
Jar
jar.tools
JAR Tools โ Online Java Decompiler, JAR Editor & Viewer
We cannot provide a description for this page right now
Java Code Geeks
javacodegeeks.com โบ home โบ core java
13 Best Java Decompilers for Download and Online Use for Java Developers - Java Code Geeks
November 17, 2021 - This is kind of all in one decompiler but it is online. You can decompiler java classes, F#, C#, android, python and lua code as well.
CybersecTools
cybersectools.com โบ home โบ security operations โบ offensive security โบ java decompiler online
Java Decompiler Online
May 27, 2026 - Java Decompiler Online is Online Java decompiler tool with support for modern Java features.
Product Hunt
producthunt.com โบ home โบ java decompiler online
Java Decompiler Online: a tool for converting class files to java source files | Product Hunt
January 20, 2026 - Java Decompiler Online is an online tool for converting class files to java source files. It supports different file formats, includingclass,jar,zip and others. It is an efficient and smart way to decompile the java code.
Java Decompilers
javadecompilers.com โบ apk
APK decompiler - decompile Android .apk โ ONLINE โ
Decompile Android Apk applications and extract Java source code and resources โ ONLINE โ
Codeusingjava
codeusingjava.com โบ tools โบ javadecompiler
Free Java Decompiler Online Tool
Online Jasypt Encryption and Decryption Tool ยท Free Java Decompiler Online Tool ยท โThis site uses cookies to deliver our services and to show you relevant ads. By continuing to visit this site you agree to our use of cookies.
Reddit
reddit.com โบ r/java โบ looking for a java decompiler
r/java on Reddit: Looking for a Java decompiler
June 13, 2017 -
I have a couple of .jar games on my disk. I want to decompile the bytecode back to the readable .java format.
What are my options? Google wasn't very helpful, throwing old sites at me with broken download links.
I just want to learn - I played the game lots of times so I know what it does, now I want to know how it does it.
EDIT: Thanks to everyone who replied, the post stays so that others can use. I decided to use jd-gui, but it's good to know many Java IDEs have plugins to do this too (I use Netbeans and I couldn't find a decompiler plugin for it)
Top answer 1 of 5
20
I've had a good experience with this one: http://jd.benow.ca/ EDIT: You decompile the .class file, which is a compiled .java file. A .jar file may contain .java files as well.
2 of 5
19
i would try fernflower from intellij ( https://github.com/JetBrains/intellij-community/tree/master/plugins/java-decompiler/engine ) for this.