Java - 捕获 PC 正在关闭事件,或同等事件

发布于 2024-12-02 12:15:45 字数 174 浏览 1 评论 0原文

我创建了一个编辑一些 XML 文件的软件。打开文件时会生成一个锁定文件,以避免多个用户同时编辑该文件。

我现在希望能够在有人关闭电脑时删除这样的锁。 (该应用程序在 Linux 和 Windows 上运行。)

当尝试关闭当前部分时,是否有任何公共信号传递到虚拟机?

干杯,
Ste

I created a software which edits some XML files. When a file is opened a lock file is generated to avoid having multiple users editing the file at the same moment.

I would like now to be able to delete such a lock if someone turns the PC off. (The application runs on both Linux and Windows.)

Is there any common signal which is passed to the Virtual machine when attempting to close the current section?

Cheers,
Ste

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梦回旧景 2024-12-09 12:15:45

您可以尝试添加 shutdown hook

final Thread mainThread = Thread.currentThread();
Runtime.getRuntime().addShutdownHook(new Thread() {
    public void run() {
        // remove lock file...
    }
});

在这种情况下,run 方法中的代码将在 JVM 终止之前执行。 (除非 JVM 被诸如 kill -9 31337 之类的东西杀死。)

相关问题:

You could try to add a shutdown hook:

final Thread mainThread = Thread.currentThread();
Runtime.getRuntime().addShutdownHook(new Thread() {
    public void run() {
        // remove lock file...
    }
});

In this case the code in the run-method will be executed before termination of the JVM. (Unless the JVM is killed with something like kill -9 31337.)

Related question:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文