para_bellum

SAX parser : characters

May 19th, 2013
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. public void characters(char[] ch,int start, int length) throws SAXException{
  2.     String lecture = new String(ch,start,length);
  3.     lecture = StringEscapeUtils.escapeXml(lecture);
  4.     if(buffer != null) buffer.append(lecture);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment