在网上看了一眼之后,我正在努力解决这个问题。基本上,我调用一个api,它返回xml,这个xml需要更新,然后发送回api。我现在的代码是:
public string update(){
String url = GeneralProps.getProperty("XMLUpdateURL")+testCaseID+"/block/include/data/no";
ArrayList<String> tempArray = HttpHelper.sendAuthGetRequest(url, GeneralProps.getProperty("Username"), GeneralProps.getProperty("Password"));
Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(new InputSource(new StringReader(tempArray.get(1).toString())));
XPathExpression expr = xpath.compile("//Step["+ stepNo + "]/"+ nodeName +"/text()");
Object result = expr.evaluate(doc, XPathConstants.NODESET);
NodeList nodes = (NodeList) result;
for (int i = 0; i < nodes.getLength(); i++) {
System.out.println(nodes.item(i).getNodeValue());
nodes.item(i).setNodeValue(newNodeValue);
System.out.println(nodes.item(i).getNodeValue());
}
return doc;
}
但是,doc返回[#document:null]——这意味着文档实际上在那里,我可以进行修改,但我似乎无法从doc中获取xml,因为这需要传递到另一个方法以将xml上载到api,但我无法弄清楚如何!!
1条答案
按热度按时间fjaof16o1#
我想出来了。。。。
使用以下代码:
我能够将内容转换成字符串,并根据需要上传字符串。。。