在构造函数中引用现有文件时 Windows Java 文件锁定?
假设我在 java 中对保持打开状态的进程执行以下操作:
import java.io.File;
import java.util.Date;
public class LogHolder {
public static void main(String[] args) {
File file1 = new File("myLogFile.log");
while (true) {
System.out.println("Running " + new Date());
}
}
}
我是否以其他 Windows 进程无法写入日志文件的方式锁定了该文件?
Suppose I do the following in java for a process that stays open:
import java.io.File;
import java.util.Date;
public class LogHolder {
public static void main(String[] args) {
File file1 = new File("myLogFile.log");
while (true) {
System.out.println("Running " + new Date());
}
}
}
Have I locked this file in a way that other windows processes can't write to the log file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能对您有帮助: FileLock。
This might help you: FileLock.
不,您还没有锁定文件。以下是 Java 文档总结 java.io.File 用途的方式:
(换句话说,
new File()
甚至不打开文件。)您可以在这里找到其余内容:http://java.sun.com/javase/6/docs/api/java/io/文件.html
No, you haven't locked the file. Here's how the Java documentation summarizes the purpose of java.io.File:
(In other words,
new File()
doesn't even open the file.)You can find the rest here: http://java.sun.com/javase/6/docs/api/java/io/File.html