What libraries are there for processing XML on Google App Engine/Java Servlet

后端 未结 8 1143
梦谈多话
梦谈多话 2021-01-18 14:23

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 Eclip

相关标签:
8条回答
  • 2021-01-18 15:13

    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.

    0 讨论(0)
  • 2021-01-18 15:15

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

    0 讨论(0)
提交回复
热议问题