如何获取document?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何获取document?相关的知识,希望对你有一定的参考价值。
代码
String xmlContent ="测试";
Document document = DocumentHelper.parseText(xmlContent);
当前document没有值
代码
String xmlContent ="<?xml version=\\"1.0\\" encoding=\\"UTF-8\\"?><InterBOSS><SvcCont><OrderInfoReq>测试</OrderInfoReq></SvcCont></InterBOSS>";
Document document = DocumentHelper.parseText(xmlContent);
当前document没有值
Document document=DocumentHelper.parseText(xmlContent);//获取Document对象
Element root=document.getRootElement();//获取根结点
Element InterBOSS=root.element("InterBOSS");//获取子结点
Element svcCont=InterBOSS.element("SvcCont");//获取子子结点
Element orderInfoReq=svcCont.element("OrderInfoReq");//获取子子子结点
System.out.println("info:"+orderInfoReq.getTextTrim());
以上是关于如何获取document?的主要内容,如果未能解决你的问题,请参考以下文章