Tagged Questions
98
votes
8answers
65k views
decompiling DEX into Java sourcecode
Are there any tools or recipes for turning Android DEX (VM bytecode) files into corresponding Java sourcecode?
79
votes
10answers
64k views
How do I “decompile” Java class files?
On Java performance questions on this site I often see responses from people who have "decompiled" the Java class file to see how the compiler optimizes certain things.
What program can I use to ...
42
votes
10answers
26k views
Is Jad the best java decompiler? [closed]
It hasn't been updated since 2006. Are there better alternatives?
Homepage: http://www.kpdus.com/jad.html
36
votes
6answers
3k views
Any maintained Open-Source Java Decompiler?
Is there any maintained Open-Source Java Decompiler?
Jdec looks nice but has no community and has bugs, none of which has got fixed since 2007.
Dava seems to be a thesis project rather than a ...
14
votes
7answers
10k views
How to debug compiled Java code in Eclipse
I wonder if there are any solutions for Eclipse IDE to debug Java code for which I have no source, i.e. to debug dynamically decompiled code, step through it, etc.? I tried to use JD-Eclipse, ...
12
votes
9answers
8k views
Choose and test java decompiler
Now I'm trying to find the best java decompiler, I found these:
http://java.decompiler.free.fr/
http://www.reversed-java.com/fernflower/
http://dj.navexpress.com/
...
10
votes
7answers
3k views
Where can I find a Java decompiler?
http://www.kpdus.com/jad.html#download ?
The above link to JAD (a Java decompiler) is not working. Is there any other place where I can find a Java decompiler?
6
votes
3answers
2k views
Is there a java classfile / bytecode editor to edit instructions?
Is there a utility (or eclipse plugin) for editing java class files?
I'd like to manipulate the bytecode of a java class file without recompiling it nor having a complete buildpath.
E.g. to rename ...
5
votes
3answers
396 views
how to write decompilers
how to write a simple decompiler for Java language? what are the steps of it?i don't know how to start!
thanks.
4
votes
2answers
422 views
What would be a more accurate decompiler than jad for Eclipse to get rid of <-MISALIGNED ->?
I have used jad for many years, most of these with the Jadclipse plugin to eclipse which makes it quite usable. Especially with the "Align code for debugging" which allows you to see the decompiled ...
3
votes
4answers
4k views
Java decompiler for netbeans
Is there any open source java decompiler for netbeans just like jadclipse for eclipse.
3
votes
2answers
507 views
Is there any Java Decompiler that can correctly decompile calls to overloaded methods?
Consider this (IMHO simple) example:
public class DecompilerTest {
public static void main(String[] args) {
Object s1 = "The", s2 = "answer";
doPrint((Object) "You should know:");
...
2
votes
2answers
144 views
Why are decompiled java programs not always directly compilable and what are the parts that are not?
So I am trying to make slight valid legal changes to a compiled java program. I am decompiling it using JD-GUI for Mac. For the most part the decompiled code is error free but there are some strange ...
2
votes
3answers
746 views
Best decompiler for obfuscated bytecode [closed]
I deal a lot with obfuscated (proguard) bytecode, and currently I'm using JD (http://java.decompiler.free.fr/ ) to decompile it. JD does a decent job, but some times the generated code is too ...
2
votes
4answers
249 views
Java: Strange result after decompiling
I have a strange jar file, it contains some class that when I use JD Decompiler, it show a segment like this:
public final void a(ak aa) {
this.jdField_a_of_type_Ak = aa;
}
public final void ...
2
votes
3answers
798 views
How to view the source code from jar file in my own JAVA GUI?
I have one GUI with one list box to display the list of methods in the class.
I can achieve it using reflection.
But can I view the source code in anotehr text area on selecting the method name ?
I ...
2
votes
3answers
2k views
Best Java decompiler freeware [closed]
Possible Duplicate:
Where can I find a Java decompiler?
Dear All,
I have lost my .java and only have class files left on server.i want to recover back my original code.please suggest which ...
2
votes
3answers
941 views
JAVA: if without curly brackets, and relation to continue
I have the following java code fragment
while (condition1){
switch (someinteger){
case 1:
if(condition2) continue;
// other stuff here
break;
...
1
vote
4answers
76 views
How can I extract the strings declared inside the java which went into a jar file
Is there a equivalent to the Unix strings command for jar files?
To give an example, if I have this Java file:
public class Foo {
String foo = "I\'m so meta even this acronym";
}
compiled and ...
1
vote
2answers
193 views
java decompiler for eclipse
I use JD for eclipse to decompile classes. There is a problem with line numbers. For example debugger shows current line 1123 but source code generated by JD has less than 1000 lines, however it shows ...
1
vote
4answers
115 views
Techniques to prevent/slow decompiling [closed]
Possible Duplicate:
Best Java obfuscator ?
For my example I know that eclipse offers a decompiling plugin. And I am sure there are a few other ways out there to go about decompiling ...
1
vote
2answers
114 views
What is this referencing?
Suppose I have this class:
public class class1 extends Applet implements Runnable
{
private String s;
private URL u;
...
}
And a second class:
class TS extends Thread
{
private ...
1
vote
3answers
1k views
Extract source code from .jar file
Is there a way to extract the source code from an executable .jar file (Java ME)? Any help will be appreciated.
1
vote
3answers
1k views
How to decompile obfuscated java programs avoiding class/package name collisions
I want to decompile a java program and recompile the derived (obfuscated) source. I unpacked the .jar archive and got a directory structure like that:
com/
com/foo/A/
com/foo/A/A.class
...
1
vote
5answers
13k views
How to get Java Decompiler / JD / JD-Eclipse running in Eclipse Helios
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. ...
1
vote
3answers
151 views
Eclipse Class File Metadata
In Visual Studio, I can obtain a succinct list of public methods/members exposed in a class for which I do not have the source (i.e. bundled inside a DLL) by pressing F12 (GoToDefinition).
Similarly, ...
1
vote
4answers
650 views
what is the best software to decompile a java class file?
I need to batch decompile many class files.
0
votes
1answer
11 views
I am not able to open open-in-jd-gui.sh in my ubuntu terminal.how to use the open-in-jd-gui.sh tar file
**i want to open open-in-jd-gui.sh this file in ubuntu terminal or execute in eclipse.i have some java class files.but in windows i know that.but in ubuntu how to excute this file.
how to execute the ...
0
votes
1answer
26 views
How to step through decompiled 3rd party code in eclipse?
I would like to step through 3rd party code while debugging my application in Eclipse. I've tried both jadclipse and jd-eclipse. In both cases, the decompiled code is shown when I, eg, click on a ...
0
votes
2answers
73 views
Java Bytecode decompilation — Unused Methods Present?
Say I have
private void ThisIsMySecurityMethodPleaseLookHERE() {
//security stuff
}
In my program, but that method is called nowhere in any of the actually executed code. Does it get compiled to ...
0
votes
2answers
608 views
Java Decompiler for Eclipse (JD-Eclipse) not running in Ganymede
I have installed JD-Eclipse in many platforms and it works fine. I have a platform which the installation does not work. Please identify exactly what versions of each product must be installed. Note: ...
0
votes
3answers
451 views
Problem when getting source code from .apk file?
As per this link. I can go first two steps but, i can't get souce code using this Java Decompiler. If anyone having good dj java decompiler then send it to me. And, also i need some good apktool v1.x ...
0
votes
3answers
152 views
Can jar files be decompiled to get original source?
I have a major problem that happened to me. I am writing a program that has taken me 3 months+ to make and today i accidently deleted the source code. I am working in NetBeans and i had just cleaned ...
0
votes
3answers
336 views
I need a Java decompiler [closed]
Possible Duplicate:
Where can I find a Java decompiler?
Can I have some recommendations on a good GUI based Java decompiler like jd-gui? I need the compiler to be able to save all source ...
0
votes
2answers
208 views
Attaching source for some classes in a jar
For our project we are doing kind of reverse engineering.
For that we have to debug a third party jar.
I tried de-compiling that jar with DJ, JAD, but output is source code with compile time errors ...
0
votes
4answers
623 views
Having issues decompiling *any* class with Jode
I've been staring at this issue for hours now. Any help is appreciated.
I wrote code that uses the Jode decompiler from the "embedded jode jar file". I want to use this version because it is under ...
-1
votes
3answers
649 views
How to use java decompiler JAD? [closed]
I've downloaded JAD from the Internet and now I want to decompile my .class file to the
original source code.
I've been using Notepad as editor and I compile and run my Java program through Command ...
-1
votes
1answer
225 views
JD-GUI How re recreate project linkages from decompiled JAR
I have a legacy .JAR file. I am able to decompile it with JD_GUI, but this gives me a set of class files. I am trying to follow code through but there is limited linkage between the various classes. I ...