XML & whitespace problem

admin

Administrator
Staff member
Having a problem with the IBM SAX parser (which is Xerces).We have the data comming from a client that looks something like this:<tag>A string of about 300 characters containing an embedded null</tag>Now when our Java servlet parses this we have a character method that doesthis:public void characters(char[] ch, int start, int length){String s = new String(ch, start, length);
 
Back
Top