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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.