从 Java 强制删除 Windows 上的文件

发布于 2024-07-07 07:56:06 字数 65 浏览 8 评论 0原文

java是否有一种编程方法可以在Windows上强制删除文件,即使文件被某个进程锁定? 我无法终止锁定文件的进程。

Is there a programatic way from java to force a file deletion on windows even if the file is locked by some process? I cannot kill the process that locks the file.

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

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

发布评论

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

评论(3

飞烟轻若梦 2024-07-14 07:56:06

你可以通过JNI。 但锁定的全部目的是不允许从另一个进程中删除。

因此,除非您运行的是 Windows 9x,否则这可能是不可能的。

也就是说,如果您知道使用 WIN32 执行此操作的方法,那么您也许可以使用 JNI 在 java 中执行此操作。

you can go through JNI. But the whole point of locking was NOT to allow for deletion from another process.

So, unless you're running Windows 9x, this might be impossible to do.

That said, if you're aware of a way to do it using WIN32, then you might be able to do it in java using JNI.

如梦初醒的夏天 2024-07-14 07:56:06

我不是Windows方面的专家,但我不知道Java中的OR OUT方法可以可靠地强制删除进程当前打开的文件,同时进程继续运行。

I am not an expert on windows, but I do not know of a way in OR OUT of Java to reliably force the deletion of a file that is currently open to a process while the process continues to run.

メ斷腸人バ 2024-07-14 07:56:06

使用Unlocker。 从 Java 中将其作为外部进程调用。

Use Unlocker. Call it from Java as an external process.

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