Creating a File Lock on a File : FileLock « File Input Output « Java






Creating a File Lock on a File

 

import java.io.File;
import java.io.RandomAccessFile;
import java.nio.channels.FileChannel;
import java.nio.channels.FileLock;

public class Main {
  public static void main(String[] argv) throws Exception {
    File file = new File("filename");
    FileChannel channel = new RandomAccessFile(file, "rw").getChannel();

    FileLock lock = channel.lock();

    lock = channel.tryLock();

    lock.release();

    channel.close();
  }
}

   
  








Related examples in the same category

1.Creating a Shared File Lock on a File
2.Preventing multiple instances of an application: The file lock technique