vote up 1 vote down star

Hello,

How can I have a text file (or XML file) represented as a whole string, and search for (or match) a particular string in it?

I have created a BufferedReader object:

BufferedReader input =  new BufferedReader(new FileReader(aFile));

and then I have tried to use the Scanner class with its option to specify different delimiters, like this:

//Scanner scantext = new Scanner(input);
//Scanner scantext = new Scanner(input).useDelimiter("");
Scanner scantext = new Scanner(input).useDelimiter("\n");
while (scantext.hasNext()) {  ... }

Using the Scanner class like this I can either read the text line by line, or word by word, but it doesn't help me, because sometimes in the text, which I want to process, I have

</review><review>

and I would like to say: if you find "<review>" anywhere in the text, do something with the following next lines (or piece of text) until you find "</review>". The problem is that <review> and </review> are on different places in the text, and sometimes glued to other text (therefore the empty space as delimiter doesn't help me).

I have thought that I might use the regular expression API in Java (the Pattern and Matcher classes), but they seem to match a particular string or line, and I want to have the text as one continuous string (at least this was my impressions from what I have read about them). Could you tell me what structures/methods/classes I should use in this case? Thank you.

flag

21% accept rate
I have edit the text several times after posting it, so everything is read now, I hope (sorry for the non-seeable things) – gemm May 4 at 19:32
Looks fine to me. – mmyers May 4 at 19:33
By the way, do you ever accept answers nowadays? – mmyers May 4 at 19:42
I see you do. :) (I didn't mean to pressure you, it's just that I still remember an answer that would have gotten me an Enlightened badge if it had been accepted. At that time I didn't have a single Enlightened badge; now I have enough that one more or less doesn't really make a difference.) – mmyers May 4 at 20:00
I have many post, in which I didn't accept an answer (reasons mentioned previously). When I have time I want to mark accepted answers, but still haven't found time to do this. At least I do it with the new answers. Anyway, thanks a lot, I manage to make the program work. – gemm May 5 at 9:39

6 Answers

vote up 3 vote down check

Don't try to parse XML with regular expressions; it leads only to pain. There are a lot of very nice existing XML APIs in Java already; why try to reinvent them?

Anyway, to search for a string in a text file, you should:

  1. Load the file as a string (example)
  2. Create a Pattern to search for
  3. Use a Matcher to iterate through any matches
link|flag
xom - xom.nu - my favorite – lucas May 4 at 19:50
vote up 1 vote down

It looks to me as though you are trying to work with a structured xml file, and would suggest that you look into javax.xml.parsers.DocumentBuilder or other built in APIs to parse the document.

link|flag
vote up 1 vote down

Use an XML parser.

Or use xpath, like in this example.

link|flag
vote up 1 vote down

I have thought that I might use the regular expression API in Java (the Pattern and Matcher classes), but they seem to match a particular string or line, and I want to have the text as one continuous string

Um, does something prevent you from reading the XML file into a String, and then operating on that, using the regular expression API?

You can easily read a file into a String using e.g. FileUtils from Apache Commons IO: see readFileToString(File file, String encoding).

link|flag
vote up 1 vote down

I also would recommend using a XML parsing API...But as you only want to do something in case of "review" tag, maybe you could use SAX better than DOM...

link|flag
vote up 0 vote down

I think here, we can copy individual line in the text file into a string and then try to match a substring(search string) with the string(line)

But error produces while excuting metacharacters like / or # etc..

link|flag

Your Answer

Get an OpenID
or

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