使用 Desktop.getDesktop().edit(File file) 编辑文件时跟踪文件状态

发布于 2025-01-05 11:44:49 字数 202 浏览 3 评论 0 原文

通过调用 Desktop.getDesktop().edit(File myFile) 打开/编辑文件时是否可以以某种方式跟踪当前文件状态?

我的目标是在许多用户之一正在编辑文件时锁定共享文件(存储在公共数据库中),最后当他保存对文件的更改时,我会收到某种“事件”,以便我可以解锁该文件他关闭相应的应用程序后立即重新文件。文件。

非常感谢任何帮助!提前致谢!

Is it somehow possible to keep track of the current file state when opening/editing a file by calling Desktop.getDesktop().edit(File myFile)?

My goal is to lock a shared file (which is stored in a common database) while one of many users is editing the file and finally when he saves the changes to the file I get some kind of "event" so that I can unlock the file again as soon as he closed the corresponding application resp. file.

Any help highly appreciated! Thanks in advance!

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

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

发布评论

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

评论(1

贱贱哒 2025-01-12 11:44:49

要接收有关文件系统更改的通知,请使用 WatchService< /a>(自 Java 7 起)。

您注册一个服务并监视 ENTRY_MODIFY 事件类型。

此处提供了不错的演练: http:// /docs.oracle.com/javase/7/docs/api/java/nio/file/WatchService.html

如果您无法使用 Java 7,您应该查看 jnotify

To receive notifications about filesystem changes you use a WatchService (since Java 7).

You register a service and watch for ENTRY_MODIFY event type.

Nice walk-through is available here: http://docs.oracle.com/javase/7/docs/api/java/nio/file/WatchService.html

If you can't use Java 7 you should look at jnotify.

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