[
Lists Home |
Date Index |
Thread Index
]
--- "Roger L. Costello" <costello@mitre.org> wrote:
> Scenario:
>
> I have a sensor that is collecting information over time. As the data
> is collected I want to stream it out to clients. The data within each
> element is huge. Consequently, the number of SAX events would be small
> compared with the size of the data.
Keep in mind though, that the parser is free to split that element data into
multiple SAX events. Quoting from the doc:
"SAX parsers may return all contiguous character data in a single chunk, or
they may split it into several chunks;"
So the number of events might not be as small as you think.
Jim
[1] - http://www.saxproject.org/apidoc/org/xml/sax/ContentHandler.html#characters(char[],%20int,%20int)
=====
Jim Ancona
jim@anconafamily.com jancona@xevo.com
__________________________________________________
Do You Yahoo!?
HotJobs - Search Thousands of New Jobs
http://www.hotjobs.com
|