About 10,200,000 results
Open links in new tab
  1. How can I package a Java desktop application? - Stack Overflow

    Oct 27, 2011 · I am working on a simple desktop java application. I would like to make it as seamless to install for end users as possible. E.g. similar to how Minecraft is distributed - a …

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

    Nov 2, 2021 · java applications work only with jre. To achieve what you want, you need to distribute jre along with the application itself (jlink will help you). Then you make a native …

  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. Remote debugging a Java application - Stack Overflow

    Jun 10, 2009 · Steps: Start your remote java application with debugging options as said in above post. Configure Eclipse for remote debugging by specifying host and port. Start remote …

  5. java - How to run a JAR file - Stack Overflow

    Dec 4, 2016 · Introduction There are several ways to run java application: java -jar myjar.jar - is the default option to run application java -cp my-class-path my-main-class or java -classpath …

  6. java - application context. What is this? - Stack Overflow

    My colleagues very often use word "application context". In many articles this collocation used very often too. My current understanding: application context is single xml file. But I understand ...

  7. Entry point for Java applications: main(), init(), or run()?

    Nov 4, 2008 · The main() method is the entry point for a Java application. run() is typically used for new threads or tasks. Where have you been writing a run() method, what kind of …

  8. How do I run a Java program from the command line on Windows?

    Apr 22, 2013 · I'm trying to execute a Java program from the command line in Windows. Here is my code: import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; …

  9. java - How to configure port for a Spring Boot application - Stack …

    How do I configure the TCP/IP port listened on by a Spring Boot application, so it does not use the default port of 8080.

  10. How to create a Windows service from Java app - Stack Overflow

    To create a java windows service application with the plugin you need to go through several simple steps. Create a main service class with the appropriate method.