• 大小: 2.13KB
    文件类型: .zip
    金币: 2
    下载: 1 次
    发布日期: 2021-02-01
  • 语言: Java
  • 标签: java  文件  锁定  占用  lock  

资源简介


资源截图

代码片段和文件信息

package com.mingrisoft;

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

public class EncryptInput {

    @SuppressWarnings(“unused“)
    public static void fileLock(String file) {
        FileOutputStream fous = null; // 创建FileOutputStream对象
        FileLock lock = null; // 创建FileLock对象
        try {
            fous = new FileOutputStream(file); // 实例化FileOutputStream对象
            lock = fous.getChannel().tryLock(); // 获取文件锁定
            Thread.sleep(60 * 1000); // 线程锁定1分钟
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public static void main(String[] args) {
        String file = “D://count.txt“; // 创建文件对象
        fileLock(file); // 调用文件锁定方法
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         379  2011-05-23 19:43  .project
     目录           0  2012-02-22 14:42  .settings\
     文件         629  2011-05-23 19:43  .settings\org.eclipse.jdt.core.prefs
     目录           0  2012-02-22 14:42  src\
     目录           0  2012-02-22 14:42  src\com\
     目录           0  2012-02-22 14:42  src\com\mingrisoft\
     文件         786  2011-05-23 19:43  src\com\mingrisoft\EncryptInput.java
     文件         301  2011-05-23 19:43  .classpath

评论

共有 条评论