Tagged Questions
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 ...
7
votes
13answers
21k views
Is there a way to get jadclipse working with Eclipse 3.4?
I'm a big fan of the Jadclipse plugin and I'd really like to upgrade to Eclipse 3.4 but the plugin currently does not work. Are there any other programs out there that let you use jad to view source ...
5
votes
2answers
149 views
What are my free and/or open source options for decompiling class files and JARs?
I'm familiar with JAD, and haven't found anything newer or better, but I really didn't look that hard because I had previous experience with the JAD tool. However, I might have missed some really good ...
4
votes
2answers
426 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 ...
4
votes
3answers
3k views
Recompile decompiled Java (JD / JAD) source that contains goto instructions
(Related question: http://stackoverflow.com/questions/992930/java-compilers-or-jvm-languages-that-support-goto)
I have decompiled a jar (Legally, for debugging purposes) and want to recompile it.
...
3
votes
2answers
509 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:");
...
1
vote
2answers
156 views
Decompiling java with JAD - limitations
I am trying to decompile a couple of jar files using JAD in Java (I tried JD-GUI as well with even less luck), but I get quite a lot of errors. One type (easy to fix) seems to be with internal ...
1
vote
1answer
1k views
JADClipse not working with Eclipse 3.6
Does Jadclipse work on Eclipse 3.6?
I have installed Jadclipse 3.3.0 on my Eclipse 3.6 by copying the jar into the plugins directory and restated eclipse.
Now I have the jadclipse menu under ...
1
vote
1answer
193 views
how to adapt Proguard to .jar and hide my private methods?
im using proguard and hiding my code.. and id seem to work... 'half'.
i just want it not decoded, and to be worked, and privates to be not seen by jad..
here's my java code
package kr.pkgcls;
...
1
vote
1answer
530 views
edit java class file JAD
i need to change the access modifier of one constructor in a class file... how do i do it with jad..
thanks all...
raj...
1
vote
1answer
914 views
Jad file download link for my website
I am putting up a small website via webs.com for me and my friends that could also be accessible via wap, i.e. mobile internet, and I want to add links to my site that downloads .jar files. I uploaded ...
0
votes
2answers
157 views
how to provide .jad file download link?
We are trying to provide a download link to abc.jad file in index.html. abc.jad and index.html are both in the same folder. Following is the link.
<a href="abc.jad" ...
0
votes
1answer
99 views
How to deliver .jad file using Jersey Rest service?
I have to return a JavaME .jad file from restful web service (using Jersey), which is then used to install an app on a mobile phone. Before delivering the .jad file some values in there have to be ...
0
votes
2answers
455 views
Problem while setting jad with Eclipse Helios
I am using jad to decompile my java class files through Eclipse. I have installed net.sf.jadclipse_3.3.0.jar plugin for Eclipse
I put the jar in the Eclipse plugins directory.
Next I have downloaded ...
0
votes
2answers
127 views
Dealing with labels in decompiled code
I'm wishing to return to a project to which I have lost source to a time ago but have managed to get the compiled version from a user. I've used a few decompilers to slowly piece together the code ...
0
votes
0answers
55 views
Know the version of the compiler
I have only one file available. jad, and all the source folder. I would have to know the version of the compiler that compiled the application (I did not have access to. cod) ...
Is this possible?
...
0
votes
1answer
377 views
Jadclipse not working while debugging, but working with Ctrl + left mouse click
I am trying to use jadclipse with below configuration on my Win XP box:
Jadclipse - 3.3.0
Jad - 1.5.8g
Eclipse - 3.6.1
Java - 1.5.0_03-b07
I have followed installation steps as below :
added ...
0
votes
0answers
192 views
Java, how to make undecompilable fragment of code? [closed]
Possible Duplicate:
“undecompilable” source code in java
You can make code undecompilable, the cuestion is how?
I have a fragment of code in java microedition that is ...
-1
votes
3answers
659 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 ...