Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get the code of a java exe? [duplicate]

Tags:

java

Possible Duplicate:
Where can I find a Java decompiler?

Hi,

how to get the source code of a java exe file (an simple application)?

(I know its not obfuscated)

EDIT: Its an Exe File, not more not less, no *.jar

like image 739
PassionateDeveloper Avatar asked Nov 05 '22 11:11

PassionateDeveloper


1 Answers

Well, first step would be to try to find program which turned the .jar into exe. After that you would need to study how that program is doing its thing and find a way to reverse it. After that, if you manage to get raw data, you'd use java decompilers.

You could take a look at this question for example and start from there: How can I extract java exe to jar

Here: http://www.physicsforums.com/showthread.php?t=243295 it's said that it could be difficult.

like image 60
AndrejaKo Avatar answered Nov 12 '22 14:11

AndrejaKo