I was asked to make a program (in java) by some person but I was stacked as I didn’t know how to generate and exe file from my jar file… It would be useless If I install for them the jdk environment as this person don’t how to program… Does anyone knows ho to do this or what tool should I use ?
Regards from Córdoba Capital, Argentina…Thanks in advance !!!
Here is a post from earlier that has some other options:
How to create a Java application which can be run by a click?
As Lucas mentions above, you will need to install the JRE on the user’s machine to get a Java app to run properly. If it is a small program, you could consider making a .bat file (or .sh file on *nux) to allow the user to run the program. Your bat file could as simple as the one below. Just put in a .bat file and add as a short cut. I know there are more elegant solutions out there, but this is simple and should work.