create executable copy

how i can create executable copy of my applcation (.exe)thanks
[77 byte] By [a_c1a] at [2007-9-28 11:23:23]
# 1
you could cheat.Write a batch file to start your java application.Then if you want an icon, create a shortcut to that batch file.
willwarrena at 2007-7-12 1:55:47 > top of Java-index,Other Topics,Java Community Process (JCP) Program...
# 2

Hi,

TO create a windows executable copy of the application you can use a software called SHRINK. Search for it on the internet and download it. It has the option of making an executable. Cause I have been using it but I have forgotten where I downloaded it from.

That would solve your problem.

Regards

Masaro

masaro_daniel26a at 2007-7-12 1:55:47 > top of Java-index,Other Topics,Java Community Process (JCP) Program...
# 3
can you tell the answer how to create executable copy
kphanikishorea at 2007-7-12 1:55:47 > top of Java-index,Other Topics,Java Community Process (JCP) Program...
# 4
You can create an .exe for your application but it still needs the JRE to run. Why not just create an executable jar file?
cmp2a at 2007-7-12 1:55:47 > top of Java-index,Other Topics,Java Community Process (JCP) Program...
# 5

On a similar topic could someone tell me if creating an Exe would prevent people from decompiling my code.

I want to create java programs which can't be decompiled (note that .class files can be converted back to .java files with an infinite no. of free apps).

Please, no discussion of what is the point, just cut to chase, will exe be secure code or not?

thanks

Philluminatia at 2007-7-12 1:55:47 > top of Java-index,Other Topics,Java Community Process (JCP) Program...
# 6
Hi, Have you heard of code obfuscation. There are tools available do obfuscate your code so that decompiled class file(.java) files are obfuscated and of no use. I havent used it, but its quite possible.
net5nutsa at 2007-7-12 1:55:47 > top of Java-index,Other Topics,Java Community Process (JCP) Program...