Categories:
Audio (13)
Biotech (29)
Bytecode (35)
Database (77)
Framework (7)
Game (7)
General (512)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (86)
JavaBeans (16)
JDBC (89)
JDK (337)
JSP (20)
Logging (103)
Mail (54)
Messaging (8)
Network (71)
PDF (94)
Report (7)
Scripting (83)
Security (32)
Server (119)
Servlet (17)
SOAP (24)
Testing (50)
Web (19)
XML (301)
Other Resources:
XML DTD Validaiton with sax\Writer.java
How to perform XML DTD validation with sax\Writer.java provided in the Apache Xerces package?
✍: FYIcenter
You can perform XML DTD validation with the sax\Writer.java program
provided in the Apache Xerces package as shown below.
Run the sax\Writer.java program with "-v" option to turn on validation. If the input XML file does not meet the requirements of its DTD, you will see validation errors:
\fyicenter\xerces-2_11_0\samples>\fyicenter\jdk-1.8.0\bin\java -cp .;..\xercesImpl.jar sax.Writer -v UserError.xml <?xml version="1.0" encoding="UTF-8"?> <User> <ID>101</ID> <Name>Frank Y. Ivy</Name> [Error] UserError.xml:14:8: The content of element type "User" must match "(ID+, BirthDate+,Name+,Sex+)". </User>
The XML file with DTD used in the above test is:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <!-- Copyright (c) 2017 FYIcenter.com --> <!DOCTYPE User [ <!ELEMENT User (ID+, BirthDate+, Name+, Sex+)> <!ELEMENT ID (#PCDATA)> <!ELEMENT BirthDate (#PCDATA)> <!ELEMENT Name (#PCDATA)> <!ELEMENT Sex (#PCDATA)> ]> <User> <ID>101</ID> <Name>Frank Y. Ivy</Name> </User>
Â
2017-10-08, 2356👍, 0💬
Popular Posts:
GJT (Giant Java Tree) implementation of XML Pull Parser. JAR File Size and Download Location: File n...
JDK 11 java.sql.rowset.jmod is the JMOD file for JDK 11 SQL Rowset module. JDK 11 SQL Rowset module ...
What Is commons-logging-1.2.jar? commons-logging-1.2.jar is the JAR file for Apache Commons Logging ...
XMLSchema, Release 1.4.2, is a lightweight Java object model that can be used to manipulate and gene...
Where to find answers to frequently asked questions on Downloading and Installing Connector/J - JDBC...