>Is there a way to only get one call to characters or do I have to
>concatenate the contents?

The latter. SAX explicitly does _not_ promise that all adjacent text will
be delivered as a single call to characters(), for reasons having to do
with buffer management inside parsers. Entities are one classic place where
this arises, but it can happen at any time. If your SAX application
requires a single string, the application must assemble it.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to