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:
XML Schema Validaiton with sax\Writer.java
How to perform XML Schema validation with sax\Writer.java provided in the Apache Xerces package?
✍: FYIcenter
You can perform XML Schema validation with the sax\Writer.java program
provided in the Apache Xerces package as shown below.
Run the sax\Writer.java program with "-v -s" option to turn on XML Schema validation. If the input XML file does not meet the requirements of its Schema, you will see validation errors:
\fyicenter\xerces-2_11_0\samples>\fyicenter\jdk-1.8.0\bin\java
-cp .;..\xercesImpl.jar sax.Writer -v -s UserXsdError.xml
<?xml version="1.0" encoding="UTF-8"?>
<fyi:User xsi:schemaLocation="http://fyicenter.com User.xsd">
<fyi:ID>ONE[Error] UserXsdError.xml:6:25: cvc-datatype-valid.1.2.1:
'ONE' is not a valid value for 'integer'.
[Error] UserXsdError.xml:6:25: cvc-type.3.1.3: The value
'ONE' of element 'fyi:ID' is not valid.
</fyi:ID>
<fyi:Name>Frank Y. Ivy</fyi:Name>
<fyi:BirthDate>1970-01-01+00:01[Error] UserXsdError.xml:8:52:
cvc-datatype-valid.1.2.1: '1970-01-01+00:01' is not a valid value for 'dateTime'.
[Error] UserXsdError.xml:8:52: cvc-type.3.1.3: The value '1970-01-01+00:01'
of element 'fyi:BirthDate' is not valid.
</fyi:BirthDate>
<fyi:Sex>Male</fyi:Sex>
</fyi:User>
The XML file used in the above test is, UserXsdError.xml:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Copyright (c) 2017 FYIcenter.com -->
<fyi:User xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:fyi="http://fyicenter.com"
xsi:schemaLocation="http://fyicenter.com User.xsd">
<fyi:ID>ONE</fyi:ID>
<fyi:Name>Frank Y. Ivy</fyi:Name>
<fyi:BirthDate>1970-01-01+00:01</fyi:BirthDate>
<fyi:Sex> Male</fyi:Sex>
</fyi:User>
The XML Schema file used in the above test is, User.xsd:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Copyright (c) 2017 FYIcenter.com -->
<xsd:schema
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:fyi="http://fyicenter.com"
targetNamespace="http://fyicenter.com"
elementFormDefault="qualified">
<xsd:element name="User">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="ID" type="xsd:integer"/>
<xsd:element name="Name" type="xsd:string"/>
<xsd:element name="BirthDate" type="xsd:dateTime"/>
<xsd:element name="Sex" type="fyi:sexType"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:simpleType name="sexType">
<xsd:restriction base="xsd:NMTOKEN">
<xsd:enumeration value="Male"/>
<xsd:enumeration value="Femal"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>
⇒ sax\DocumentTracker.java - Apache Xerves Sax Sample
⇐ XML DTD Validaiton with sax\Writer.java
2017-10-08, ≈37🔥, 0💬
Popular Posts:
JRE 8 plugin.jar is the JAR file for JRE 8 Java Control Panel Plugin interface and tools. JRE (Java ...
Commons Pool provides an Object-pooling API, with three major aspects: 1. A generic object pool inte...
What is the sax\Counter.java provided in the Apache Xerces package? I have Apache Xerces 2.11.0 inst...
Java Advanced Imaging (JAI) is a Java platform extension API that provides a set of object-oriented ...
maven-core-3.8.6.jar is the JAR file for Apache Maven 3.8.6 Core module. Apache Maven is a software ...