Tagged Questions
4
votes
1answer
2k views
Java: opening and reading from a file without locking it
I need to be able to mimic 'tail -f' with Java. I'm trying to read a log file as it's being written by another process, but when I open the file to read it, it locks the file and the other process ...