我正在Eclipse中编写Java servlet(将在Google App Engine上托管)并需要处理XML文档。哪些库可以很容易地添加到Eclipse项目并且具有良好的示例代码?
答案 0 :(得分:5)
我最终使用JAXP和SAX API。
在我的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();
....
答案 1 :(得分:2)
Xerces(提供SAX和DOM实现)和Xalan(提供转换支持) - 从1.5开始就已经与JDK捆绑在一起,因此已经在标准的Java安装中配置了
答案 2 :(得分:2)
答案 3 :(得分:2)
您可以使用需要xerces SAXParser的JDOM。但是,AppEngine不提供xerces库。您可以通过在项目的WEB-INF / lib折叠中复制它来添加它。
答案 4 :(得分:1)
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import org.w3c.dom.Document;
import org.xml.sax.InputSource;
import org.xml.sax.SAXException;
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws IOException {
String content = req.getParameter("content");
Document doc = parseXml(content);
resp.setContentType("text/plain");
if (doc != null)
{
resp.getWriter().println(doc.getDocumentElement().getNodeName());
}
else
{
resp.getWriter().println("no input/bad xml input. please send parameter content=<xml>");
}
}
private static Document parseXml(String strXml)
{
Document doc = null;
String strError;
try
{
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
StringReader reader = new StringReader( strXml );
InputSource inputSource = new InputSource( reader );
doc = db.parse(inputSource);
return doc;
}
catch (IOException ioe)
{
strError = ioe.toString();
}
catch (ParserConfigurationException pce)
{
strError = pce.toString();
}
catch (SAXException se)
{
strError = se.toString();
}
catch (Exception e)
{
strError = e.toString();
}
log.severe("parseXml: " + strError);
return null;
}
答案 5 :(得分:0)
JDom具有比标准Java XML apis更好(更简单)的接口。
答案 6 :(得分:0)
您可以使用在非servlet环境中使用的完全相同的库。
答案 7 :(得分:0)
另一个比Xerces更快的选择(我最后一次比较它们)是Saxon。