I am generating a log file and what i want is that i want to read the data periodically without having to read from the beginning each time. can anyone help.
|
|
Open the file and have a loop which,
You can use FileInputStream or RandomAccessFile. |
|||||||||
|
|
|
|||
|
|
|
use unix command 'tail', the option '-f' and '-F' is for the same command is very handy as well. See here http://www.thegeekstuff.com/2009/08/10-awesome-examples-for-viewing-huge-log-files-in-unix/ for examples or just google around for examples. |
|||||
|
|
|
If you want to Run a program to read your log file periodically then you can use schedulers like, Quartz Scheduler to run it periodically. |
||||
|
|
|
RandomAccessFile is a good option. If you leave the application you will have to persist the place of your last read before leaving, in order to avoid rereading information. Log files, on the other hand, tend to become quite large for heavy event flow. Rotating log files will allow you to shift your problem a little towards file naming. Your can configure your system to produce one log file per day like here:
If the files you get are still very large, you may rotate them by date and time and you will have also the hour as part of the file name. Your files could then rotate, let's say, every three hours or even every hour. This will give you more log files to read, but they will be smaller, thus easier to process. The date and time range you want to seek for will be part of the file name. You could also additionally rotate by file size. If you select a maximum file size you can deal with you could avoid accessing randomly a huge file completely. |
||||
|
|