Tagged Questions
0
votes
1answer
214 views
In Java What is the guaranteed way to get a FileLock from FileChannel while accessing a RandomAccessFile?
I am trying to use
FileLock lock(long position, long size,boolean shared)
in FileChannel object As per the javadoc it can throw OverlappingFileLockException. When I create a test program with 2 ...