首页 > 学院 > 开发设计 > 正文

文件锁

2019-11-18 14:48:23
字体:
来源:转载
供稿:网友
文件锁



// : c12:FileLocking.java
// {Clean: file.txt}
// From 'Thinking in Java, 3rd ed.' (c) BrUCe Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.

import java.io.FileOutputStream;
import java.nio.channels.FileLock;

public class FileLocking {
  public static void main(String[] args) throws Exception {
    FileOutputStream fos = new FileOutputStream("file.txt");
    FileLock fl = fos.getChannel().tryLock();
    if (fl != null) {
      System.out.PRintln("Locked File");
      Thread.sleep(100);
      fl.release();
      System.out.println("Released Lock");
    }
    fos.close();
  }
} ///:~


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表