About 13,600,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 simple executable for …

  2. How can I find Java heap size and memory used (Linux)?

    How can I check heap size (and used memory) of a Java application on Linux through the command line? I have tried through jmap. But it gives information about internal memory areas, like Eden, Perm...

  3. 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 my-class …

  4. javafx - How to create a standalone .exe in Java (that runs without an ...

    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 launcher (exe) to launch …

  5. 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.

  6. 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 debugging in …

  7. 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; import …

  8. 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 application are you …

  9. How can I create a Windows .exe (standalone executable) using Java ...

    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 to write a …

  10. 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 ...