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 can't write to it anymore. Any help would be greatly appreciated!

Here is the code that I'm using currently:

public void read(){
    Scanner fp = null;
    try{
        fp = new Scanner(new FileReader(this.filename));
        fp.useDelimiter("\n");
    }catch(java.io.FileNotFoundException e){
        System.out.println("java.io.FileNotFoundException e");
    }
    while(true){
        if(fp.hasNext()){
            this.parse(fp.next());
        }           
    }       
}
link|improve this question

0% accept rate
If nothing else works, you can use jni to get to the win32 api (assuming you're on windows, otherwise whatever api you're working with). – Blindy Mar 29 '10 at 10:59
using the win32 api would be the ugliest thing ;) – Bozho Mar 29 '10 at 11:02
Heh since I don't know Java that well, that's the best advice I have :) – Blindy Mar 29 '10 at 11:03
I selected Java for portability, so this isn't an option. I will be looking into the FileChannel API though that Cshah mentioned when I get home. Thanks for the help – rogue780 Mar 29 '10 at 14:05
The JNI suggestion is way off base. It is the Win32 API that is doing the locking here. Java doesn't do that. Using FileChannel won't help either. I would review the entire requirement. Log files aren't there to be parsed, they are for humans. If you need communications from another part of the application, use a Socket or a database. – EJP Mar 30 '10 at 0:34
feedback

1 Answer

Look at the FileChannel API here. For locking the file you can check here

link|improve this answer
You can look at the possible duplicate question in stackoverflow at stackoverflow.com/questions/128038/… – Cshah Mar 29 '10 at 11:03
Hmm. I've been looking it over and tried several strategies -- even using java.io.RandomAccessFile in addition to FileChannel, but I still can't manage to let another process write to a file that I'm reading in Java. – rogue780 Mar 29 '10 at 22:37
rogue780 - post the strategies you've tried. Note that if the other process requires an exclusive lock before it writes to the file, then you are pretty much toast (of course, tail wouldn't work in this situation either). But have you tried locking (with a non-exclusive read lock) the top portion of the file? – Kevin Day Mar 30 '10 at 4:17
The behavior of locks is also specific to the underlying operating system.I havent tried shared locking but i guess you can try that in linux. I doubt whether Windows would support it – Cshah Mar 30 '10 at 14:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.