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 ...
4
votes
2answers
424 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
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
1answer
156 views

What is the C# equivalent to JAD?

What is the C# equivalent to Java's JAD and is there a VS plugin similar to Eclipse's JadClipse?
0
votes
0answers
63 views

decompile java class in jar file in maven repository

Using m2eclpse, class file inside jar file can be listed. However, both Jad or JD-eclipse won't work. If I use "open with", it show the error as the following ...
-1
votes
3answers
656 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 ...