Tagged Questions
1
vote
2answers
324 views
Read external log file without creating file-lock
Trying to read a log file line-by-line (in Java). This log file is being written to simultaneously by another process (non-java program).
I have 2 approaches -
BufferedReader (BufferedReader br = ...
0
votes
1answer
82 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 = ...