XML Parser

XML Parser tutorial java for beginners and professionals with examples in eclipse on Basics, JAVA XML Parsers, DOM Parser, Parse XML Document, Query XML Document, Create XML Document, Modify XML Document,SAX Parser, StAX Parser and more.
 

What is XML?

The XML refers to the EXtensible Markup Language which is used to store and transport the data. XML not provides any predefined tags. We have to define our own tags. Every opening XML tag must have a closing tag. XML tags are case sensitive and must be completely nested.

Syntax:



    jai
    MCA
    27

What is XML parser?

The XML parser is a piece of program code which read the XML data and makes it available to the program for manipulation.

Commonly used XML parsers in java:

1. DOM Parser
2. SAX Parser
3. StAX Parser

Note: The DOM and SAX are the built in XML parsers in JDK.
 

Java XML Parser tutorial: