What I need to do is basically reading a file which is continously growing, but in every interval I just want to read the new that was appended to the file.
I found a lot of ways to do this with a file on my filesystem, but all these require that I download the file before I can do the magic using the RandomAccessFile
-Object.
Is there a way to do this with an online-file like http://myurl.com/123.txt? So that I just stream the data added in the last 2 minutes?
Thanks a lot! noise