Sax parser read a line not totally
问题 I'm trying to parse a simil-InkML document. Every content's node has more tuple (separated by comma) with 6 or 7 number (negative and decimal too). In testing I see that the method character of SAX don't memorize all the data. The code: public class PenParser extends DefaultHandler { //code useless public void characters(char ch[], int start, int length) throws SAXException { //begin my debug print StringBuilder buffer=new StringBuilder (); for(int i=start;i<length;i++){ buffer.append(ch[i]);