删除 Windows 和 Java 中的文件锁

发布于 2024-08-26 18:10:32 字数 207 浏览 4 评论 0原文

我有一个使用 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 技术交流群。

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

发布评论

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

评论(2

多孤肩上扛 2024-09-02 18:10:32

您需要以任何方式关闭文件上的所有句柄。例如,必须先关闭该 File 上的 FileOutputStream,然后才能重命名它。这就是 Windows 文件系统的工作方式。

You need to close any handles on the file at any way. E.g. a FileOutputStream on that File must be closed before you can rename it. That's just the way how the Windows file system works.

∝单色的世界 2024-09-02 18:10:32
in_stream.close();            
out_stream.getChannel().close();
out_stream.close();

无论如何,在 Windows 中它保持锁定状态:*(

in_stream.close();            
out_stream.getChannel().close();
out_stream.close();

Anyhow in Windows it stay locked :*(

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