Read this:
http://xml.apache.org/xerces2-j/faq-sax.html#faq-2

>>-----Original Message-----
>>From: Suresh Babu Koya [mailto:[EMAIL PROTECTED]
>>Sent: Monday, December 06, 2004 3:42 PM
>>To: [EMAIL PROTECTED]; 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:[EMAIL PROTECTED]
>>>>Sent: Monday, December 06, 2004 3:20 PM
>>>>To: [EMAIL PROTECTED]
>>>>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: [EMAIL PROTECTED]
>>>>For additional commands, e-mail: [EMAIL PROTECTED]
>>>>
>>>>
>>
>>
>>---------------------------------------------------------------------
>>To unsubscribe, e-mail: [EMAIL PROTECTED]
>>For additional commands, e-mail: [EMAIL PROTECTED]
>>
>>



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

Reply via email to