How to allow running only one instance of a Java program at a time?

前端 未结 9 2205
南旧
南旧 2020-11-30 00:07

I need to prevent users from starting my Java application (WebStart Swing app) multiple times. So if the application is already running it shouldn\'t be possible to start it

相关标签:
9条回答
  • 2020-11-30 00:29

    Try JUnique:

    String appId = "com.example.win.run.main";
    boolean alreadyRunning;
    try {
        JUnique.acquireLock(appId);
        alreadyRunning = false;
    } catch (AlreadyLockedException e) {
        alreadyRunning = true;
    }
    if (alreadyRunning) {
        Sysout("An Instance of this app is already running");
        System.exit(1);
    }
    
    0 讨论(0)
  • 2020-11-30 00:33

    As the question states that WebStart is being used, the obvious solution is to use javax.jnlp.SingleInstanceService.

    This service is available in 1.5. Note that 1.5 is currently most of the way through its End Of Service Life period. Get with Java SE 6!

    0 讨论(0)
  • 2020-11-30 00:33

    You can use JUnique library. It provides support for running single-instance java application and is open-source.

    http://www.sauronsoftware.it/projects/junique/

    See also my full answer at How to implement a single instance Java application?

    0 讨论(0)
  • 2020-11-30 00:35

    I've seen so many of this questions and I was looking to solve the same problem in a platform independent way that doesn't take the chance to collide with firewalls or get into socket stuff.

    So, here's what I did:

    import java.io.File;
    import java.io.IOException;
    
    /**
     * This static class is in charge of file-locking the program
     * so no more than one instance can be run at the same time.
     * @author nirei
     */
    public class SingleInstanceLock {
    
        private static final String LOCK_FILEPATH = System.getProperty("java.io.tmpdir") + File.separator + "lector.lock";
        private static final File lock = new File(LOCK_FILEPATH);
        private static boolean locked = false;
    
        private SingleInstanceLock() {}
    
        /**
         * Creates the lock file if it's not present and requests its deletion on
         * program termination or informs that the program is already running if
         * that's the case.
         * @return true - if the operation was succesful or if the program already has the lock.<br>
         * false - if the program is already running
         * @throws IOException if the lock file cannot be created.
         */
        public static boolean lock() throws IOException {
            if(locked) return true;
    
            if(lock.exists()) return false;
    
            lock.createNewFile();
            lock.deleteOnExit();
            locked = true;
            return true;
        }
    }
    

    Using System.getProperty("java.io.tmpdir") for the lockfile path makes sure that you will always create your lock on the same place.

    Then, from your program you just call something like:

    blah blah main(blah blah blah) {
        try() {
            if(!SingleInstanceLock.lock()) {
                System.out.println("The program is already running");
                System.exit(0);
            }
        } catch (IOException e) {
            System.err.println("Couldn't create lock file or w/e");
            System.exit(1);
        }
    }
    

    And that does it for me. Now, if you kill the program it won't delete the lock file but you can solve this by writing the program's PID into the lockfile and making the lock() method check if that process is already running. This is left as an assingment for anyone interested. :)

    0 讨论(0)
  • 2020-11-30 00:44

    You could use the registry, although this halfheartedly defeats the purpose of using a high-level language like java. At least your target platform is windows =D

    0 讨论(0)
  • 2020-11-30 00:45

    I think your suggestion of opening a port to listen when you start your application is the best idea.

    It's very easy to do and you don't need to worry about cleaning it up when you close your application. For example, if you write to a file but someone then kills the processes using Task Manager the file won't get deleted.

    Also, if I remember correctly there is no easy way of getting the PID of a Java process from inside the JVM so don't try and formulate a solution using PIDs.

    Something like this should do the trick:

    private static final int PORT = 9999;
    private static ServerSocket socket;    
    
    private static void checkIfRunning() {
      try {
        //Bind to localhost adapter with a zero connection queue 
        socket = new ServerSocket(PORT,0,InetAddress.getByAddress(new byte[] {127,0,0,1}));
      }
      catch (BindException e) {
        System.err.println("Already running.");
        System.exit(1);
      }
      catch (IOException e) {
        System.err.println("Unexpected error.");
        e.printStackTrace();
        System.exit(2);
      }
    }
    

    This sample code explicitly binds to 127.0.0.1 which should avoid any firewall warnings, as any traffic on this address must be from the local system.

    When picking a port try to avoid one mentioned in the list of Well Known Ports. You should ideally make the port used configurable in a file or via a command line switch in case of conflicts.

    0 讨论(0)
提交回复
热议问题