Mac OS 中的 Java 文件锁定
使用 java.nio 包的文件锁定在 Windows 操作系统中工作得很好,但是 同一程序在 Mac 操作系统上无法正常工作。
我正在尝试删除 Windows 中锁定的文件,但它不会删除该文件。 但我试图在 Mac 操作系统中实现同样的目标,即使文件被锁定 或由 FileWriter/FileOutputStream 打开,其删除文件。
对于这个问题有什么建议吗? 文件锁实现中存在错误吗?
谢谢。
File locking using java.nio package works fine with Windows OS but
same program is not working properly with Mac OS.
I am trying to delete the locked file in Windows where its not deleting the file.
But same thing i am trying to achieve in Mac OS where even though file is locked
or opened by FileWriter/FileOutputStream, its deleting the file.
Any suggestion for this issue ?
Is it bug in File lock implementation ?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是一个错误(除非您称 Windows 为一个错误)
锁在 *nix 系统上是建议。除了先检查文件是否被锁定之外,没有什么可以阻止您删除锁定的文件。
在 Windows 中,它有点相同,除了系统命令检查锁和 IIRC 打开文件的默认模式是使用独占锁。
It's not a bug (unless you call Windows a bug)
Locks are advisory on *nix systems. Nothing prevents you from deleting a locked file except checking to see if it's locked first.
In windows it's sort of the same, except the system commands check for locks and IIRC the default mode for opening a file is with an exclusive lock.