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

后端 未结 8 1201
梦谈多话
梦谈多话 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:02

    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.

提交回复
热议问题