Presentation is loading. Please wait.

Presentation is loading. Please wait.

XML Parsing Using Java APIs AIP Independence project Fall 2010.

Similar presentations


Presentation on theme: "XML Parsing Using Java APIs AIP Independence project Fall 2010."— Presentation transcript:

1 XML Parsing Using Java APIs AIP Independence project Fall 2010

2 XML overview XML (eXtensible Markup Language) is a language specification created by the W3C A very general version of HTML Format takes the form of arbitrary tags that contain information e.g. 2010-10- 06 These tags are defined in XML schema documents (.xsd)

3 JAXP Java API for XML Processing, the default Java XML library There are two main default interfaces: SAX and DOM

4 SAX SAX (Simple API for XML) Used for serial reading, analogous to a file stream Triggers events as the cursor reads data Faster and uses less memory Doesn’t store the XML file in memory The user is responsible for keeping track of needed data

5 DOM DOM (Document-Object Model) Creates an actual internal tree representation of the XML Provides non-sequential access, allowing data to be manipulated at will Slower and takes more memory

6 A related API: JAXB Java API for XML Binding A separate and somewhat more sophisticated approach Using the schema document, XML tags are bound as actual Java objects Allows intuitive coding, but also memory-intensive

7 A simple example This program uses SAX to print the provided sample MODS document Doesn’t apply any formatting or try to figure out how to use the information yet, but this should be possible using the MODS specification


Download ppt "XML Parsing Using Java APIs AIP Independence project Fall 2010."

Similar presentations


Ads by Google