删除 Windows 和 Java 中的文件锁
我有一个使用 RandomAccessFile 类打开文件的 Java 程序。
我希望能够在 Java 打开该文件时重命名该文件。在 Unix 中,这不是问题。有谁知道我如何在 Windows 中做到这一点?
我应该设置 Java 以某种方式打开它吗?
提前致谢。
编辑、澄清:我希望能够在我的 Java 代码中设置此文件共享访问权限。
I have a Java program that opens a file using the RandomAccessFile class.
I'd like to be able to rename that file while it is opened by Java. In Unix, this isn't a problem. Does anyone know how I can do this in Windows?
Should I set Java to open it a certain way?
Thanks in advance.
Edit, clarification: I'd like to be able to set this file sharing access in my Java code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要以任何方式关闭文件上的所有句柄。例如,必须先关闭该
File
上的FileOutputStream
,然后才能重命名它。这就是 Windows 文件系统的工作方式。You need to close any handles on the file at any way. E.g. a
FileOutputStream
on thatFile
must be closed before you can rename it. That's just the way how the Windows file system works.无论如何,在 Windows 中它保持锁定状态:*(
Anyhow in Windows it stay locked :*(