-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUseFileLocks.java
More file actions
33 lines (26 loc) · 816 Bytes
/
UseFileLocks.java
File metadata and controls
33 lines (26 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// $Id$
import java.io.*;
import java.nio.*;
import java.nio.channels.*;
public class UseFileLocks
{
static private final int start = 10;
static private final int end = 20;
static public void main( String args[] ) throws Exception {
// Get file channel
RandomAccessFile raf = new RandomAccessFile( "usefilelocks.txt", "rw" );
FileChannel fc = raf.getChannel();
// Get lock
System.out.println( "trying to get lock" );
FileLock lock = fc.lock( start, end, false );
System.out.println( "got lock!" );
// Pause
System.out.println( "pausing" );
try { Thread.sleep( 3000 ); } catch( InterruptedException ie ) {}
// Release lock
System.out.println( "going to release lock" );
lock.release();
System.out.println( "released lock" );
raf.close();
}
}