SAX Parser or, Simple API for XML, has been around for many years and was originally a development led by David Megginson before the turn of the millennium. In those days, you had to download the Java version of SAX from David’s personal website. This developed into the SAX Project before finally being added to Java Standard Edition 1.4.
SAX is a streaming interface for XML, which means that applications receive event notifications about the XML document being processed an element, and attribute, at a time in sequential order starting at the top of the document and ending with the closing of the ROOT element. This means that its extremely efficient at processing XML in linear time without placing too many demands upon system memory.
1. Setup
This XML file contains xml attributes also along with child elements.
<users>
<user id="100">
<firstname>Tom</firstname>
<lastname>Hanks</lastname>
</user>
<user id="101">
<firstname>Lokesh</firstname>
<lastname>Gupta</lastname>
</user>
<user id="102">
<firstname>HowToDo</firstname>
<lastname>InJava</lastname>
</user>
</users>
2. Create Java POJO
The User class has simple attributes to store the information read from the XML file.
public class User {
private int id;
private String firstName;
private String lastName;
//Setters, getters
}
3. SAX Event Handler
The event handler receives the events for each event during the read operation through method callbacks to the following functions:
- startElement()
- endElement()
Inside the functions, we can use if-statement to know which element is currently being processed and then we can extract the required information.
import java.util.ArrayList;
import java.util.Stack;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;
public class UserParserHandler extends DefaultHandler {
//This is the list which shall be populated while parsing the XML.
private ArrayList userList = new ArrayList();
//As we read any XML element we will push that in this stack
private Stack elementStack = new Stack();
//As we complete one user block in XML, we will push the User instance in userList
private Stack objectStack = new Stack();
public void startDocument() throws SAXException {
//System.out.println("start of the document : ");
}
public void endDocument() throws SAXException {
//System.out.println("end of the document document : ");
}
public void startElement(String uri, String localName, String qName, Attributes attributes)
throws SAXException {
//Push it in element stack
this.elementStack.push(qName);
//If this is start of 'user' element then prepare a new User instance and push it in object stack
if ("user".equals(qName)) {
//New User instance
User user = new User();
//Set all required attributes in any XML element here itself
if (attributes != null && attributes.getLength() == 1) {
user.setId(Integer.parseInt(attributes.getValue(0)));
}
this.objectStack.push(user);
}
}
public void endElement(String uri, String localName, String qName) throws SAXException {
//Remove last added element
this.elementStack.pop();
//User instance has been constructed so pop it from object stack and push in userList
if ("user".equals(qName)) {
User object = (User) this.objectStack.pop();
this.userList.add(object);
}
}
/**
* This will be called everytime parser encounter a value node
*/
public void characters(char[] ch, int start, int length) throws SAXException {
String value = new String(ch, start, length).trim();
if (value.length() == 0) {
return; // ignore white space
}
//handle the value based on to which element it belongs
if ("firstName".equals(currentElement())) {
User user = (User) this.objectStack.peek();
user.setFirstName(value);
} else if ("lastName".equals(currentElement())) {
User user = (User) this.objectStack.peek();
user.setLastName(value);
}
}
/**
* Utility method for getting the current element in processing
*/
private String currentElement() {
return (String) this.elementStack.peek();
}
//Accessor for userList object
public ArrayList getUsers() {
return userList;
}
}
4. Reading the XML File
The handler class is set as the content handler for the XMLReader using the method reader.setContentHandler(handler). The reader takes the input XML in various forms, accepted as an argument to InputSource constructor. Finally, we use reader.parse() method to read the XML content.
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
import org.xml.sax.XMLReader;
import org.xml.sax.helpers.XMLReaderFactory;
public class UserParser {
public ArrayList parseXml(InputStream in) {
//Create an empty link of users initially
ArrayList<User> users = new ArrayList<>();
try {
//Create default handler instance
UserParserHandler handler = new UserParserHandler();
//Create parser from factory
XMLReader reader = XMLReaderFactory.createXMLReader();
//Register handler with parser
reader.setContentHandler(handler);
//Create an input source from the XML input stream
InputSource source = new InputSource(in);
//parse the document
reader.parse(source);
//populate the parsed users list in above created empty list; You can return from here also.
users = handler.getUsers();
} catch (SAXException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
}
return users;
}
}
5. Demo
Let us write some code to test whether our handler is actually working.
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.util.ArrayList;
public class SaxParserDemo {
public static void main(String[] args) throws FileNotFoundException {
//Locate the file
File xmlFile = new File("D:/temp/sample.xml");
//Create the parser instance
UserParser parser = new UserParser();
//Parse the file
ArrayList<User> users = parser.parseXml(new FileInputStream(xmlFile));
//Verify the result
System.out.println(users);
}
}
Program output.
[100:Tom:Hanks, 101:Lokesh:Gupta, 102:HowToDo:InJava]
Happy Learning !!
Need an help ….have used SAX-reader but for the description field for eg Test & return values
the reader doesn’t read the complete value but reads value after &.
i.e. it displays “return values” only
<work> <ratings_sum type="integer">26798</ratings_sum> <ratings_count type="integer">7324</ratings_count> </work>using your method, how would you suggest i parse the info for ratings sum
i’m trying to parse some data and i’m trying to get the isbn (above). i am aware that you deal with cdata within the part of the characters function where the value.length == 0, so do you have any idea i can access and obtain the isbn?
Hi
I want a generic solution for this . Means let say User has changed the xml , no need to those attributes in the Pojo class and i will run and will get correct output. Also anways suppose i will eliminate that Pojo also its very good . Bcoz i dont know what will be the xml format . So that it will work for the all xml input file . I want to go for only SAX parser.
Thanks
Tony
Sax will support to read XML file with multiple root elements? XML file has multiple encoding declarions for every root element?
Multiple root elements?? It’s something new for me. Can you please share any example or such sample xml.
If we see below xml which has “multiple encoding declarations” for each “Contact” element..The is my target xml got from client. So please suggest me how to proceed with below formatted file.
00000009151666829922
1
00000009151666829922
1
While reading getting error: The processing instruction target matching “[xX][mM][lL]” is not allowed
Thanks for your quick response.
At start of characters method, use this better code:
Hi
Will you please explain how to read file from URL instead of local resource.
Thanks
– Noman
Try this
URL oracle = new URL("http://www.oracle.com/"); BufferedReader in = new BufferedReader(new InputStreamReader(oracle.openStream())); String inputLine; while ((inputLine = in.readLine()) != null) System.out.println(inputLine); in.close();Its a nice try, but SAX means parse on fly. but you holds the data into some Stacks and Arrays.. seems its not a good arch. idea
if you have any better idea, plz share. it will benefit all.
Nice Tutorial, but today using a standalone JAXB implementation is way better!
hello can u plz me out by telling how parse any xml file without knowing the elements i mean the tags of xml.. jst knowing the xml file source… i want to parse webservices available on net jst by giving url n get the content of that xml content which is returned by the webservice. so how to get it done. plz help me
interesting question. what you are planning to do with data without knowing what you are getting? programmatically it’s possible, but I can not think of why somebody would like to do this.
example
for example above only tag seperator will be same and inside content can vary, this is wen you are not sure about input
how can we parse to read only the content between tag_seprator
Nice article Lokesh. Is there any possibility to get single employee detail alone based on “id” attribute?
Thanks,
Sasi
Hello, Thank you very much for your tutorial. I am learning SAX parsing at the same time that I have a very basic kwoledge of Java. I’ve been fiercely googling around trying to make sense of this error but ArrayList is driving me crazy.
Can you tell me why your UsersXmlParser.java is throwing this compile error (I copy and paste your source code):
( just in case is relevant, I am writing in Linux )
$ javac model.java UserParserHandler.java UsersXmlParser.java TestSAXParser.java
UsersXmlParser.java:17: illegal start of type
ArrayList users = new ArrayList();
^
UsersXmlParser.java:17: ‘(‘ or ‘[‘ expected
ArrayList users = new ArrayList();
^
UsersXmlParser.java:17: illegal start of expression
ArrayList users = new ArrayList();
^
UsersXmlParser.java:17: illegal start of expression
ArrayList users = new ArrayList();
^
4 errors
—
thank you again!
Andres
Edit: I caught a typo in the javac statement (model.java was renamed to User.java)…it did not change the output, still getting same compile errors.
Glad, you made it.
Hey nice article man.Which parser do we use to parse files with 40 to 50 mB of size.
SAX only.
Hey nice tutorial! However I spot a little bug in the sample code paste on this page: in the xml file, value node “firstname” and “lastname” should be changed to “firstName” and “lastName”, otherwise the firstname and lastname value will never be set to the User object. Anyway great tutorial buddy!
Excellent article. Thanks. I’ve been trying to wrap my head around an XML parsing example I found elsewhere and it wasn’t making sense. Yours is the cleanest, clearest example I’ve found. Thanks a bunch.