About 642,000 results
Open links in new tab
  1. decompiler - How do I "decompile" Java class files? - Stack Overflow

    What program can I use to decompile a class file? Will I actually get Java code, or is it just JVM assembly code? On Java performance questions on this site I often see responses from people who h...

  2. java - How to decompile a whole Jar file? - Stack Overflow

    Does anyone know of a free decompiler that can decompile an entire Jar file instead of a single class? I have a problem with sub classes like name$1.class name$2.class name.class

  3. How to decompile to java files intellij idea - Stack Overflow

    Feb 8, 2015 · Look Inside Compiled Code with Java Bytecode Decompiler -- This page introduced the plugin Java Bytecode Decompiler in 2020.03. By using this bundled plugin inside Intellij, it's pretty …

  4. decompiling - Best free Java .class viewer? - Stack Overflow

    Oct 15, 2008 · 0 I just published a stand-alone Java Decompiler GUI (based on Jad) which you can get from Util Java Decompiler (JAD based) v1.0 This is a Windows based .NET 4.0 application, which …

  5. How to decompile a jar into .java files from command prompt

    Apr 18, 2018 · To decompile a group of files on the command line, run the following commands: Download the JAR file from here as the jd-cmd README.md file. Create the directory where your …

  6. What is a good Java decompiler and deobfuscator?

    63 I am using JD-GUI to decompile Java JAR files, but the problem is that it leaves many errors, such as duplicate variables which I have to fix myself and check to see if the program still works (if I fixed the …

  7. java - How do I decompile a .jar file? - Stack Overflow

    Aug 6, 2011 · Take a look at Java Decompiler. It allows you to decompile jar files with the JD-GUI and browse the class files as source. Here is another stackoverflow question.

  8. eclipse - Java Decompiler - Stack Overflow

    Nov 13, 2013 · Can you recommend a Java decompiler for Eclipse? My other questions is what restrictions is there for using a decompiled code from an other Java program? Illegal or what? I dont …

  9. How to get Java Decompiler / JD / JD-Eclipse running in Eclipse Helios

    47 Java Decompiler (JD) is generally recommended as a good, well, Java Decompiler. JD-Eclipse is the Eclipse plugin for JD. I had problems on several different machines to get the plugin running.

  10. How can I open Java .class files in a human-readable way?

    7 You want a java decompiler, you can use the command line tool javap to do this. Also, Java Decompiler HOW-TO describes how you can decompile a class file.