gpt4 book ai didi

java - 如何使用 JDOM 解析 SOAP

转载 作者:行者123 更新时间:2023-12-01 13:32:18 26 4
gpt4 key购买 nike

我有以下 SOAP 示例消息:

     <?xml version="1.0"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<CREATE__CompIntfc__SUPPORT_DOC_TBL>
<SUPPORT_DOC_ID>POLICE</SUPPORT_DOC_ID>
<SUPPORT_DOC>
<DESCR>Police Report</DESCR>
<DESCRSHORT>Police</DESCRSHORT>
</SUPPORT_DOC>
</CREATE__CompIntfc__SUPPORT_DOC_TBL>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>

我需要解析元素。我正在为此任务编写以下代码,但它不起作用:

                  File inputXML=new                 File("/home/igor/IdeaProjects/jdomtest/src/main/resources/example.xsd");
SAXBuilder saxBuilder=new SAXBuilder();
try{
Document rootElement=saxBuilder.build(inputXML);
Element element=rootElement.getRootElement();

Namespace ns=Namespace.getNamespace()
List<Element> list=element.getChildren("Body");
System.out.print(list.size());

for (int i=0;i<list.size();i++){
Element el = (Element)list.get(i);
System.out.println(el);
}

}catch (Exception exp){
exp.printStackTrace();
}

但这不是屏幕上的任何文字

最佳答案

Body 元素位于 http://schemas.xmlsoap.org/soap/envelope/ 命名空间中,但您使用的是单参数 getChildren 方法,该方法在 no 命名空间中查找元素。您需要将适当的命名空间传递给getChildren的两个参数版本。

关于java - 如何使用 JDOM 解析 SOAP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21496749/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com