About 385,000 results
Open links in new tab
  1. jar - How do I create executable Java program? - Stack Overflow

    Apr 30, 2009 · A jar file isn't really a standalone executable file. If you double click a jar file and the program runs, then it's opening the jar file in the java executable.

  2. java - How to make an executable JAR file? - Stack Overflow

    Mar 10, 2011 · A jar file is simply a file containing a collection of java files. To make a jar file executable, you need to specify where the main Class is in the jar file. Example code would be …

  3. How can I convert my Java program to an .exe file? [closed]

    Sep 29, 2008 · If I have a Java source file (*.java) or a class file (*.class), how can I convert it to a .exe file? I also need an installer for my program.

  4. How can I create a Windows .exe (standalone executable) using …

    Apr 19, 2011 · Been working with C++ for about 5 months now, and have decided I want to start getting into Java. I'm using Eclipse as my IDE, and obviously Java for the language. I'm trying …

  5. Compiling a java program into an executable - Stack Overflow

    Possible Duplicate: How do I create an .exe for a Java program? I've just made a simple program with Eclipse and I want to compile it into an executable, but simply can't seem to find out how t...

  6. How can I build JAR files from IntelliJ IDEA properly?

    I'd like to create a JAR file, in a separate directory, that contains the compiled module. In addition, I would like to have the dependencies present beside my module. No matter how I twist IntelliJ …

  7. javafx - How to create a standalone .exe in Java (that runs without …

    Nov 2, 2021 · How can I make a standalone Windows executable(.exe) for my JavaFX project(I wrote in IntelliJ IDEA), without an installer for my program? I want the user to download the …

  8. Create standalone Java executable for different platforms without ...

    May 9, 2021 · 14 I have created a Java application runtime image using jlink. I would like to be able to ship the software as an executable to different platforms. (Preferably by building on …

  9. java - Create executable Jar file under Eclipse - Stack Overflow

    Aug 4, 2014 · 15 I created a Java application and I want to create jar file for this application. This application imported other external jar files by Build Path>Add External Jar File. How can I …

  10. How do I create an .exe for a Java program? - Stack Overflow

    Closed 14 years ago. Possible Duplicate: How can I convert my java program to an .exe file ? I'd like to create a Windows .exe for a Java program. Previously, I've used JEXECreator for this, …