Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
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 (322)
Collections:
Other Resources:
SaxClassInfo.java - SAX Implementation Class
How to verify the SAX (Simple API for XML) implementation class information?
✍: FYIcenter
If you want to verify the SAX (Simple API for XML) implementation class information,
you can try the following example program:
// Copyright (c) 2017 FYIcenter.com
import javax.xml.parsers.SAXParserFactory;
import javax.xml.parsers.SAXParser;
public class SaxClassInfo {
public static void main(String[] args) throws Exception {
SAXParserFactory f = SAXParserFactory.newInstance();
SAXParser p = f.newSAXParser();
System.out.println("SAX class info:");
System.out.println(" Factory: "+f.getClass().getName());
System.out.println(" Parser: "+p.getClass().getName());
}
}
Compile and run it with Java SE 8 SDK:
>\fyicenter\jdk-1.8.0\bin\javac SaxClassInfo.java >\fyicenter\jdk-1.8.0\bin\java SaxClassInfo SAX class info: Factory: com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl Parser: com.sun.org.apache.xerces.internal.jaxp.SAXParserImpl
Run it again with Apache Xerces 2.11.0 xercesImpl.jar provided:
>\fyicenter\jdk-1.8.0\bin\java -cp .;\fyicenter\xerces-2_11_0\xercesImpl.jar; SaxClassInfo SAX class info: Factory: org.apache.xerces.jaxp.SAXParserFactoryImpl Parser: org.apache.xerces.jaxp.SAXParserImpl
The output tells you that the default implementation of SAX in Java SE 8 JDK is the Apache Xerces 2.7.1 package. And you can override it with Apache Xerces 2.11.0 by specifiying the JAR file to the -cp option.
You can confirm Apache Xerces version numbers as desribed below:
>\fyicenter\jdk-1.8.0\bin\java com.sun.org.apache.xerces.internal.impl.Version Xerces-J 2.7.1 >\fyicenter\jdk-1.8.0\bin\java -cp .;\fyicenter\xerces-2_11_0\xercesImpl.jar org.apache.xerces.impl.Version Xerces-J 2.11.0
⇒ SaxXmlParser.java - SAX XML Parser Example
⇐ Using XML SAX API with Apache Xerces
2017-12-09, ∼2032🔥, 0💬
Popular Posts:
itextpdf.jar is a component in iText 5 Java library to provide core functionalities. iText Java libr...
Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java"....
How to download and install ojdbc5.jar for Oracle 11g R1? ojdbc5.jar for Oracle 11g R1 is a Java 5 J...
JDK 6 tools.jar is the JAR file for JDK 6 tools. It contains Java classes to support different JDK t...
JavaMail Source Code Files are provided in the source package file, httpcomponents-client-5. 2-src.zi...