I have 40KB HTML page and I want to find certain patterns in it.

I can read it by 1K buffer but I want to avoid situation that pattern that I'm searching would be split between two buffer reads.

How to overcome this problem?

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

This is easy. You count the longest pattern you will look for, then either backtrack the file pointer by that amount, or you scroll through the file, reading only the delta.

Imagine the longest pattern being 26 bytes.

  1. Read 1k.
  2. Check for all patterns -> nothing.
  3. Drop 1k - 26 bytes from the buffer.
  4. Read 1k - 26 bytes from stream and add to your buffer
  5. Goto 2.

Edit: Let me clarify: There are two methods to do this, both have their merits. The one I documented above is best used if you are reading from a stream, which means a data source that does not support seeking. If, however, your datasource does support seeking (like a filesystem file), you can easily do the same with seeks. Check for pattern, if not found, seek back the size of your longest pattern, then start from there.

If, however, you want to support the search for patterns that are longer than your buffer size, you might need a much more clever algorithm. You would need a lookup table of all patterns that are currently "open" when you contnue to read more data, which in turn will cost more memory - you get the problem.

link|improve this answer
Lets just hope his length of longest string isn't 1k-1 :) – josh.trow Jan 19 '11 at 15:14
Good idea, but it only works, if he searches for exact characters. What if pattern - everything between some html tags. It's length is unpredictable. – Alex Orlov Jan 19 '11 at 15:14
If the length is unpredictable, of course I predict a length larger than his buffer size. Which means he is in more trouble than he knows :) – 0xCAFEBABE Jan 19 '11 at 15:17
feedback

That's what the Scanner class is for.

link|improve this answer
feedback

You could take a look at CharBuffer, which implements CharSequence for just this purpose

link|improve this answer
feedback

Why not use a SAX parser. It is build to handle large files of mark-up. You would ony run into problems if you are trying to match across different elements along the same level. However this is not impossible to handle

link|improve this answer
SAX parser will fail on bad HTML syntax, so I can't use it. – pixel Jan 19 '11 at 21:45
feedback

Your Answer

 
or
required, but never shown

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