I have a text file (*.txt) . it's updated frequently. I need only update text from it when it's updated.
|
closed as not a real question by Mat, Don Roby, Vineet Reynolds, Eduardo Molteni, nightcracker Jun 18 '11 at 12:57
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
You will need to read the whole file, compare the data to the previous version (if you have it). There is nothing in the OS or Java that will do this for you. |
|||||||||||
|
|
You can use File.lastModified() to see if the file has been updated. I'm afraid you'll probably have to poll the file, there isn't any way to get notified when it changes at the Java level, although the OS might give you that ability. |
|||
|
|
Take a Look: 1) If the file frequently changed, you just create a thread and take previous file and after some secs take again that file. 2) just compare both file. if false get the the data from the file. this will help you. |
|||
|