Hi,
 
Is there any guarantee that the org.xml.sax.ContentHandler.characters() callback
will not break a whitespace-separated 'word' into different chunks ?
 
e.g., given the following XML fragment :
 
    <NumberList>
     111 222 333
     444 555 666
    </NumberList>
 
The possible values for the string corresponding to the input param
'ch[start] ... ch[start+length-1]' in the callback method
 
      org.xml.sax.ContentHandler( char[] ch,  int start, int length )
 
may be something like :
     "111 222 333"
     "444 555 666"
 
but will NEVER be something like :
      "111 22"
      "2 333"
      "444 5"
      "55 666"
 
Thanks,
/Meh


Do you Yahoo!?
The New Yahoo! Shopping - with improved product search

Reply via email to