I'm trying to get informations from a XML file in Java with SAX.
I found some examples with a class that implements ContentHandler interface and it work well when I run the parse method on an entire file well formed with XmlReaderFactory class.
But my goal is to parse an XML file on the fly from stdin for example, I'd like to get XML informations markups by markups like:
> <foo>
markup = foo
> <bar a="baz">
markup = bar
attribute a = baz
> </bar>
end markup bar
> </foo>
end markup foo
But when I pass theses inputs step by step to the parser it stops at the first entry and say
[Fatal Error] :1:10: XML document structures must start and end within the same entity.
Is there a solution to do this. I'm only allowed to use SAX to do this :-( for my school exercise.
Thanks for your help,
Arthur.