Tagged Questions
2
votes
2answers
272 views
How wait and get lock on file
I want wait till other program releases lock on particular file, then I want to proceed to open that unlocked file.
I came across many solutions, but none are useful, here is my code -
File file = ...
0
votes
1answer
78 views
Having trouble releasing a Java FileLock
I haven't worked with nio much and I'm having some trouble with releasing a FileLock. Basically, in JVM-A I have a NON-SHARABLE write lock on a file which looks something like this:
File lockfile = ...
0
votes
1answer
300 views
Locking `properties` file in java
I read this post. Can anybody tell me if the java.nio.FileLock.lock() works well with java.util.Properties class.
Question:
If I put the lock on the properties file what I read, does this lock the ...
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 ...
8
votes
2answers
2k views
When using Java's FileLock, is it ok to let close() to automatically do a lock.release()?
As most should know close() also closes any streams uses.
This allows the follow code:
BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(...)));
...
br.close();
This ...