使用 launch4j 时创建我的 exe 应用程序的多个实例

Creating multiple instances of my exe application when using launch4j

我的申请 运行 正确。唯一的问题是当我去打开第二个时 window。

当我打开第二个实例(通过单击 exe)时,没有任何反应。我该如何解决这个问题?

我正在使用 Launch4J 将我的 jar 转换为 exe。

终于找到解决办法了。最后很简单。 查阅手册就成功了。 http://launch4j.sourceforge.net/docs.html

我打开了 launch4j xml 配置文件并删除了以下行

<singleInstance>
    <mutexName>text</mutexName>
   <windowTitle>text</windowTitle>
</singleInstance> 

然后在 launch4j 中再次打开该文件并构建包装器。