I am relatively new to Java, learning at job as intern. Have been tasked with one issue to resolve and need some guidance on best technique to implement it..
I need to monitor a log file for a pattern, log file continually gets written by application.
- application can add new log statements while my program is reading it
- logs gets rolled over when its >200 MB or at end of the day, so my program should handle change in filename dynamically.
- if my program crashes for any reason, it has to resume from where it left off
I am looking at java api and wrote a program to read file and put in a loop with 30 seconds sleep. but that does not meet all conditions.. I do not want to re-invent wheel so if there is any existing java api, then that will help me great deal !
