从 Java 强制删除 Windows 上的文件
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以通过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.
我不是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.
使用Unlocker。 从 Java 中将其作为外部进程调用。
Use Unlocker. Call it from Java as an external process.