Read this:
http://xml.apache.org/xerces2-j/faq-sax.html#faq-2
>>-----Original Message-----
>>From: Suresh Babu Koya [mailto:skoya@xxxxxxxxxxxxxx]
>>Sent: Monday, December 06, 2004 3:42 PM
>>To: xerces-j-user@xxxxxxxxxxxxxx; IndianAtTech
>>Subject: RE: Regarding characters function
>>
>>
>>You have to collect all the string data and process all that
>>data in the endElement method.
>>
>>/Suresh
>>
>>>>-----Original Message-----
>>>>From: IndianAtTech [mailto:indianattech@xxxxxxxxx]
>>>>Sent: Monday, December 06, 2004 3:20 PM
>>>>To: xerces-j-user@xxxxxxxxxxxxxx
>>>>Subject: Regarding characters function
>>>>
>>>>
>>>>Hello All,
>>>>
>>>>How many times the characters functions is called, if the value in
>>>>XML set as multiline data
>>>>
>>>>When I have tested the following code snippet, I am not getting all
>>>>the multi line data in single shot. characters function is calling
>>>>multiple times. I don't know where to end for single element. And
>>>>also how to get entire data in single fetch. As I don't know how many
>>>>times need to call this, Could you please help me to get rid from
>>>>accessing characters function multiple times??
>>>>
>>>> public synchronized void characters(char[] ch, int start, int length) {
>>>> String strCharacter = new String(ch,
>>>>start, length);
>>>> responseBuffer.append(strCharacter);
>>>> System.out.println(element +" -> "+responseBuffer);
>>>>
>>>> }
>>>>
>>>>---------------------------------------------------------------------
>>>>To unsubscribe, e-mail: xerces-j-user-unsubscribe@xxxxxxxxxxxxxx
>>>>For additional commands, e-mail: xerces-j-user-help@xxxxxxxxxxxxxx
>>>>
>>>>
>>
>>
>>---------------------------------------------------------------------
>>To unsubscribe, e-mail: xerces-j-user-unsubscribe@xxxxxxxxxxxxxx
>>For additional commands, e-mail: xerces-j-user-help@xxxxxxxxxxxxxx
>>
>>
|