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.
eValid Supports Regular Expressions Analysis of Web Pages (PRWeb via Yahoo! News) Functional testing of web applications now has a new degree of generality with the introduction of Regular Expression processing in the eValid suite. MDA Approach - Part 1 (Java World) Submitted by lal on Wed, 07/16/2008 - 04:12. Tags: Model Driven Architecuture [MDA] is a model driven engineering approach provided by OMG. It provides a set of guidelines for structuring specifications [for eg. business functionality] expressed as models. posted by Will Senn on Wed 30th Nov 2005 19:03 UTC (OS News) This latest installment in the Core series from Prentice Hall PTR is a welcome arrival to the PHP/MySQL space. It is jam packed with useful information. At a little over 850 pages, this volume contains information on nearly every topic of interest in both the PHP and MySQL subject areas.
FREE
Subscription
Subscribe to our mailing list and receive new articles
through email. Keep yourself updated with latest
developments in the industry.
Note
: We never rent, trade, or sell my email lists to
anyone.
We assure that your privacy is respected
and protected.
_______________________________________
Recommended
XML Books
|
|