vote up 2 vote down star

I'm writing a Java servlet in Eclipse (to be hosted on Google App Engine) and need to process an XML document. What libraries are available that are easy to add to an Eclipse project and have good example code?

flag

7 Answers

vote up 1 vote down

You can use JDOM which requires xerces SAXParser. However, AppEngine does not provide the xerces library. You can add it by copying it in the WEB-INF/lib fold of your project.

link|flag
vote up 1 vote down check

I ended up using JAXP with the SAX API.

Adding something like the following to my servlet:

import org.xml.sax.*;
import org.xml.sax.helpers.*;
import javax.xml.parsers.*;

....

InputStream in = connection.getInputStream();

InputSource responseXML = new InputSource(in);
final StringBuilder response = new StringBuilder();
DefaultHandler myHandler = new DefaultHandler() {

	public void startElement(String uri, String localName, String qName, 
			Attributes attributes) throws SAXException {
		if (localName.equals("elementname")) {
			response.append(attributes.getValue("attributename"));
			inElement = true;
		}
	}
	public void characters(char [] buf, int offset, int len) {
		if (inElement) {
			inElement = false;
			String s = new String(buf, offset, len);
			response.append(s);
			response.append("\n");
		}
	}
};

SAXParserFactory factory = SAXParserFactory.newInstance();
try {
	SAXParser parser = factory.newSAXParser();
	parser.parse(responseXML, myHandler);
} catch (ParserConfigurationException e) {
	// TODO Auto-generated catch block
	e.printStackTrace();
} catch (SAXException e) {
	// TODO Auto-generated catch block
	e.printStackTrace();
}

in.close();
connection.disconnect();

....
link|flag
vote up 0 vote down

Another choice, which has better speed than Xerces (the last time I compared them) was Saxon.

link|flag
vote up 1 vote down

you can use exactly the same libraries you use in a non-servlet environment.

link|flag
LOL - I was thinking just the same thing... – Nick Holt Jun 23 at 14:16
Well, not everything works on GAE... – Thilo Jul 27 at 6:45
vote up 0 vote down

JDom has a better (simpler) interface than the standard Java XML apis.

link|flag
vote up 1 vote down

Depends what your goals are I suppose. I've used JAXB for marshalling/unmarshalling xml to Java objects and it's fairly quick, easily extensible and has good community support.

If you don't want to get into writing schemas and what not then I've had good luck with dom4j and it has a smaller learning curve.

link|flag
Yuck, I want to process XML; I don't want to actually have to write any myself, so JAXB is out. – Sam Hasler Jun 23 at 14:42
You can also use annotations to mark up the objects you want to bind to. I personally haven't used this approach but it would save you having to write a schema. I will admit JAXB can easily be overkill for a lot of applications. – Adam B Jun 23 at 14:53
vote up 2 vote down

Xerces (that provides both SAX and DOM implementations) and Xalan (that provides support for transformations) - both have been bundled with the JDK since 1.5 and are therefore already configured in a standard Java install

link|flag
1  
the JVM provided by App Engine isn't a standard Java install. Do you know if they're available on it? – Sam Hasler Jun 23 at 14:26
Hi Sam - I've not used Google App Engine, but a quick scan of the docs suggests it's just Java 6 with some security limitations. Take a look here - code.google.com/appengine/docs/… – Nick Holt Jun 23 at 15:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.