“[#document:null]”xml解析问题

am46iovg  于 2021-07-13  发布在  Java
关注(0)|答案(1)|浏览(505)

在网上看了一眼之后,我正在努力解决这个问题。基本上,我调用一个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,但我无法弄清楚如何!!

fjaof16o

fjaof16o1#

我想出来了。。。。
使用以下代码:

Transformer transformer = TransformerFactory.newInstance().newTransformer();
        transformer.setOutputProperty(OutputKeys.INDENT, "yes");
        StreamResult sResult = new StreamResult(new StringWriter());
        DOMSource source = new DOMSource(doc);
        transformer.transform(source, sResult);
        String xmlString = sResult.getWriter().toString();      

        return xmlString;

我能够将内容转换成字符串,并根据需要上传字符串。。。

相关问题