| Author |
How to create exe file
|
Anil Bharadia
Greenhorn
Joined: Mar 12, 2009
Posts: 15
|
|
Hello friends, i want to create .exe file of my project because jar file can be decompiled easily.
How can i Create .exe file from .class or .jar file ?
|
Preparing SCJP 1.6
|
 |
Henry Wong
author
Sheriff
Joined: Sep 28, 2004
Posts: 16695
|
|
First of all, not all Java applications can be compiled to an exe -- but if you still want to do it, then google for "Java AOT".
Henry
|
Books: Java Threads, 3rd Edition, Jini in a Nutshell, and Java Gems (contributor)
|
 |
Mike Simmons
Ranch Hand
Joined: Mar 05, 2008
Posts: 2782
|
|
|
Considering the reason Anil wants to do this, I think he might be better off forgetting about exe's and instead googling "java obfuscator". Ultimately this only makes it more difficult to reverse engineer, not impossible - but fundamentally, that's true of any software that you release to the customer's own machine.
|
 |
Nishant Arora
Greenhorn
Joined: Apr 21, 2009
Posts: 16
|
|
|
Try for JNLP technology of java.
|
 |
Dmitry Mamonov
Greenhorn
Joined: Dec 24, 2008
Posts: 28
|
|
If you really want it:
http://launch4j.sourceforge.net/ - utility
http://www.javalobby.org/articles/java2exe/ - overview
|
 |
 |
|
|
subject: How to create exe file
|
|
|