RE: [xml-dev] SAX

From
Leigh Dodds <>
To
Raúl Carazo <>
Date
2002-01-04T15:28:13
ID
<>
Thread
RE: [xml-dev] SAX
Elliotte Harold's Processing with also discussing this, complete
with an example:

http://www.ibiblio.org/xml/books/xmljava/chapters/ch06s07.html

Cheers,

L.

> -----Original Message-----
> From: Simon St.Laurent [mailto:]
> Sent: 04 January 2002 16:15
> To: Raúl Carazo
> Cc: 
> Subject: Re: [xml-dev] SAX
>
>
> On Fri, 2002-01-04 at 08:11, Raúl Carazo wrote:
> >     I'm using SAX for reading a XML file but sometimes it splits a long element.
> >
> >     Do you know why? And/or how to find the point it's splitting?
>
> Do you mean you're getting multiple characters events for the same
> element?  If that's the case, just build your own buffer - an array of
> arrays will do - and put them together during the endElement event.