Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
SaxXmlWhitespace.java - ignorableWhitespace() Event Handler
How do I catch those whitespace text contents that are removed from the SAX parser?
✍: FYIcenter
When DTD is applied to the XML document, the SAX parser will quietly remove
whitespace text contents and not call the characters() event handler.
If you want to catch those whitespace text contents during the parsing process, you need add the ignorableWhitespace() event handler as shown in this example, SaxXmlWhitespace.java:
// Copyright (c) 2017 FYIcenter.com import javax.xml.parsers.SAXParserFactory; import javax.xml.parsers.SAXParser; import org.xml.sax.helpers.DefaultHandler; import org.xml.sax.Attributes; import java.io.*; public class SaxXmlWhitespace extends DefaultHandler { static String dot = "............................................................"; static int l = 0; static String show = "noshow"; public static void main(String[] args) throws Exception { SAXParserFactory f = SAXParserFactory.newInstance(); SAXParser p = f.newSAXParser(); System.out.println("Parser class: "+p.getClass().getName()); show = args[1]; p.parse(new File(args[0]), new SaxXmlWhitespace()); } public void startElement(String uri, String lName, String qName, Attributes atts) { l++; System.out.print("\n"+dot.substring(0,l)+lName+qName); } public void endElement(String uri, String lName, String qName) { l--; } public void characters(char[] ch, int start, int length) { System.out.print("("+(new String(ch,start,length))+")"); } public void ignorableWhitespace(char[] ch, int start, int length) { if (show.equals("show")) { System.out.print("["+(new String(ch,start,length))+"]"); } } }
Compile and run the example program, SaxXmlWhitespace.java:
>\fyicenter\jdk-1.8.0\bin\javac SaxXmlWhitespace.java >\fyicenter\jdk-1.8.0\bin\java SaxXmlWhitespace UserDTD.xml show Parser class: com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl .User[ ] ..ID(101)[ ] ..BirthDate(1970-01-01+00:01)[ ] ..Name(Frank Y. Ivy)[ ] ..Sex( Male)[ ]
If you run it again with "noshow", you will not see those whitespace text contents in the output:
>\fyicenter\jdk-1.8.0\bin\java SaxXmlWhitespace UserDTD.xml noshow Parser class: com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl .User ..ID(101) ..BirthDate(1970-01-01+00:01) ..Name(Frank Y. Ivy) ..Sex( Male)
⇒ SaxXmlDtdValidation.java - SAX Parser with DTD Validation
⇐ SAX Parser for XML File with DTD
2017-12-09, 1526🔥, 0💬
Popular Posts:
How to run "jar" command from JDK tools.jar file? "jar" is the JAR (Java Archive) file management co...
How to show the XML parsing flow with sax\DocumentTracer.java provided in the Apache Xerces package?...
JSP(tm) Standard Tag Library 1.1 implementation - Jakarta Taglibs hosts the Standard Taglib 1.1, an ...
maven-model-builder-3.8. 6.jaris the JAR file for Apache Maven 3.8.6 Model Builder module. Apache Ma...
What Is in Xerces-J-bin.2.12.2.zip? Xerces-J-bin.2.12.2.zip file is the distribution package ZIP fil...