Using Java API for XML validation of a document

An XML Schema defines how an instance of an XML document should look like. Most of the XML documents that are created are usually validated against a particular schema so that the XML document conforms to the standards needed before it is processed.

This ensures that the XML document does not contain any irrelevant element that might hinder the processing of the XML document.

The package javax.xml.validation contains all the classes needed for validating an XML document against a schema. The other imports that might be needed to validate an XML document are given below.

import java.io.*;
import javax.xml.transform.Source;
import javax.xml.transform.stream.StreamSource;

Now the first step is to create a new document object and load the XML file into it. For this you will be using DocumentBuilderFactory and the DocumentBuilder objects. Create an instance of a SchemaFactory object.

Then create a StreamSource for loading the Schema file into it. Now the next step is to create a Schema object and use the SchemaFactory's newSchema() method to load the schema into it.

Now for doing the validation you have to create a Validator object and link that to the Schema. Now use the validate() method of the validator object and load the XML source for validation against the particular schema.

Working examples for using the above methods are available in plenty in the internet.



SetApp - 100 Apps for everything you ever wanted to do on Mac

FREE Subscription

Subscribe to our mailing list and receive new articles
through email. Keep yourself updated with latest
developments in the industry.

Name:
Email:

Note : We never rent, trade, or sell my email lists to
anyone. We assure that your privacy is respected
and protected.

_______________________________________







 

 

FREE Subscription

Stay Current With the Latest Technology Developments Realted to XML. Signup for Our Newsletter and Receive New Articles Through Email.

Name:

Email:

Note : We never rent, trade, or sell our email lists to anyone. We assure that your privacy is respected and protected.

 

 

Add to My Yahoo!

Visit XML Training Material Guide Homepage

 

 

“Amazon and the Amazon logo are trademarks of Amazon.com, Inc. or its affiliates.”

Copyright - © 2004 - 2019 - All Rights Reserved.