Restrict multiple instances of an application in java

前端 未结 8 1105
温柔的废话
温柔的废话 2020-12-03 22:55

I want to prevent multiple instances of application being launched in java. I know 2 methods for this:

  1. locking file
  2. locking socket

But

8条回答
  •  隐瞒了意图╮
    2020-12-03 23:16

    I know that this question is pretty old, but I have to solve the same problem at the moment. I prefer the socket solution because I have never thought that such kind of task should have anything to do with the file system. It is better to solve the problem in memory and not in the file system I think.

提交回复
热议问题