| XML parser is a software module to read documents | | | | XML parser in Java. On the other hand XT is a set of |
| and a means to provide access to their content. XML | | | | tools for building program transformation systems. The |
| parser generates a structured tree to return the | | | | tools include pretty printing; bundling of systems, tree |
| results to the browser. An XML parser is similar to a | | | | transformation etc, |
| processor that determines the structure and properties | | | | SAX |
| of the data. An XML parser can read a XML | | | | Simple API for XML (SAX) was developed by the |
| document to create an output to generate a display | | | | members of a public mailing list (XML-DEV).It gives an |
| form. There are a number of parsers available and a | | | | event based approach to XML parsing. It means that |
| few of them are listed below: | | | | instead of going from node to node, it goes from |
| The Xerces Java Parser | | | | event to event. SAX is an event driven interface. |
| The main applications of the Xerces Java parser is | | | | Events include XML tag, detecting errors etc, |
| the building up of the XML-savvy web serversand to | | | | XML pull parser |
| ensure the integrity of e-business data expressed in | | | | It is optimal for applications that require fast and a small |
| XML.expat XML parser | | | | XML parser. It should be used when all the process |
| The expat XML parser is written in C and runs on | | | | has to be performed quickly and efficiently to input |
| UNIX or W32.The expat XML parser is not a validating | | | | elements. |
| processor that is you can use it only to write an XML | | | | XML parser for Java |
| parser. This parser is contributed by James Clark. | | | | It runs on any platform where there is Java virtual |
| XP and XT | | | | machine. It is sometimes called XML4J.It has an |
| XP is a Java based, XML validating parser and XT is | | | | interface which allows you to take a string of XML |
| an XSL processor. Both are written in Java.XP | | | | formatted text, pick the XML tags and use them to |
| detects all non well formed documents. It gives high | | | | extract the tagged information. |
| performance and aims to be the fastest conformant | | | | |