This question already has answers here:
How can I convert my Java program to an .exe file?
(16 answers)
How do I create an .exe for a Java program? [duplicate]
(7 answers)
Closed 3 years ago.
I wrote my own java program, but I don't know how to distribute it. After making 'Clean and Build' (from Netbeans) a .jar file is created for me. Do I have to distribute that or do some procedure to create an .exe file?
Java .jar files are runnable on any Java Virtual Machine. It is a design choice that allows your .jar to be portable.
Related
This question already has answers here:
How can I convert my Java program to an .exe file?
(16 answers)
Closed 2 years ago.
So i just finished a small Java program that I've been working on throughout the week and I want to generate an .exe file of it so I can share with my friends. I'm working on Apache Netbeans 11.3 and JDK 8.
I can successfully generate the .jar file but that's pretty much useless.
If you created a java project, then the "other" computer should have the java runtime installed, in order for the jar to be executed there (java -jar your.jar) otherwise if you really want an .exe use one of the many jar2exe converters found on the almighty internet, such as ja2exe you can download it
This question already has answers here:
Creating non-reverse-engineerable Java programs
(14 answers)
Closed 4 years ago.
I have a spring based workflow system where the java plugins are uploaded and kept in jar format, they are referred and used by the jar file. However, I have seen that jar file is very easy to decompile and it is a security risk.
I tried obfuscation as well. I want to run exe so that it is run at byte code so it is very very hard to reverse engineer.
You could use ProGuard as optimizer and obfuscator.
ProGuard also has a maven plugin that you can use it in the build process.
This question already has answers here:
How can I convert my Java program to an .exe file?
(16 answers)
Closed 8 years ago.
I have created java project that contains 6 Class file and 1 java file
And I run this project in net beans IDE now my problem is when I clean and build this project am unable to create exe file
How can I make this project as exe (an executable file)?
all 7 files in one single as executable
and found this and tried from here making executable file from a java project using NetBeans Can some one help me to solve my problem
The JAR file format provides many benefits.
You can make your Java application runnable via a double-click by packaging it into an executable jar.
This answer will help you.
This question already has answers here:
Running JAR file on Windows
(26 answers)
Closed 9 years ago.
I have created a project in netbeans and I clean and built the jar file. But I double clicked on jar file doesn't run the jar file.
Why is this jar file is not running ?
you didn't give us very much information, but if you are developing in windows, and your program is all console based, when you double click the jar, it will run, but you will not be able to see it because it has nothing to show you the output in. You can get around this two different ways.
1. Develop your own console gui
2. run the jar through cmd. you can write a batch file to do this for you if you want.
This question already has answers here:
How to create a Jar file in Netbeans
(4 answers)
Closed 8 years ago.
I need your help!
I have some classes and I have to create in Netbeans a jar file for all of them.
Someone have any idea?
Thank you very much
Right click the project node, select "clean and build".
Once completed, the Jar file will be located in the dist folder of your project folder