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?
|
|
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. |
||
|
|
|
|
I ended up using JAXP with the SAX API. Adding something like the following to my servlet:
|
|||
|
|
|
|
Another choice, which has better speed than Xerces (the last time I compared them) was Saxon. |
||
|
|
|
|
you can use exactly the same libraries you use in a non-servlet environment. |
||
|
|
JDom has a better (simpler) interface than the standard Java XML apis. |
||
|
|
|
|
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. |
||||
|
|
|
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 |
||||||
|
