Using Xerces v1.3.1.
Processing xml data by using SAXParser, I 'm getting the following
behavior when trying to Receive notification of character data by using
ContentHandler.characters(...) method.
If my xml file contain the following data in one line:
<Attribute><![CDATA[<greeting>Hello, world!</greeting>]]></Attribute>
I'm getting expected behavior, such as new String(ch, start, length)
returns me:
<greeting>Hello, world!</greeting>
If same data split into multiple lines, such as :
<Attribute>
<![CDATA[<greeting>Hello, world!</greeting>]]>
</Attribute>
length parameter repoted just a whitespace, and I can't not get actual
character data that I'm looking for. Is this bug was fixed in any new
version of SAXParser?
And what will be the way around to get correct character data?
Thanks in advance for any help.
Irene Levina.
---------------------------------------------------------------------
In case of troubles, e-mail: [EMAIL PROTECTED]
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]