Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a text file (*.txt) . it's updated frequently. I need only update text from it when it's updated.

share|improve this question
5  
"I need only update text from it when it's updated" -- What does this mean? Please check out this link: How To Ask Questions The Smart Way for tips on how to ask questions that can be answered. – Hovercraft Full Of Eels Jun 18 '11 at 12:00
@Hovercraft - I am assume it means only the diff in the files. – Oded Jun 18 '11 at 12:00
6  
@Oded: I find that when I assume, I often assume wrong. The OP needs to put some effort into writing a clear, specific and informative question. – Hovercraft Full Of Eels Jun 18 '11 at 12:02

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.

3 Answers

up vote 1 down vote accepted

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.

share|improve this answer
1  
One possible optimization: if you knew that the only changes to the file would be appends at the end, you could just keep track of an offset and then as the file grew, seek and only read the last chunk added. If changes can occur at any location in the file then the only solution is to read the entire file as @Oded states. – ribram Jun 18 '11 at 12:23
Read the whole file , i think it's not good idea. it takes a lots of time to read as i have about 4000 000 lines in text file. – Oudam Jun 18 '11 at 12:58
@Jana - You don't really have many options, apart from the optimization suggested by @ribram which will indeed only work if the file is only ever appended to. – Oded Jun 18 '11 at 13:12
no , i'm really don't know. – Oudam Jun 18 '11 at 13:36

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.

share|improve this answer
Now i'm available to know when the text file is updated by WatchService or Jnotify or Timer. But i'm trouble with how to get the text when it's updated . Any code ? – Oudam Jun 18 '11 at 12:49

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.

share|improve this answer
Now i'm available to know when the text file is updated by WatchService or Jnotify or Timer. But i'm trouble with how to get the text when it's updated . Any code ? – Oudam Jun 18 '11 at 12:48

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