作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试使用下面的代码,但没有获取值。
main
{
String example="<SOAP:Envelope xmlns:SOAP=\"http://schemas.xmlsoap.org/soap/envelope/\"><SOAP:Body><ns0:findCustomerResponse xmlns:ns0=\"http://service.jaxws.blog/\"><return id=\"123\"><firstName>Jane</firstName><lastName>Doe</lastName></return></ns0:findCustomerResponse></SOAP:Body></SOAP:Envelope>";
ByteArrayInputStream bas=new ByteArrayInputStream(example.getBytes());
JAXBContext jc = JAXBContext.newInstance(Customer.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();
SOAPMessage message = MessageFactory.newInstance().createMessage(null,
bas);
JAXBElement<Customer> jb = unmarshaller.unmarshal(message.getSOAPBody(), Customer.class);
Customer customer = jb.getValue();
System.out.println(customer.id);
System.out.println(customer.firstName);
System.out.println(customer.lastName);
}
@XmlAccessorType(XmlAccessType.FIELD)
public class Customer {
@XmlAttribute
int id;
String firstName;
String lastName;
}
请说明为什么我没有获得值
最佳答案
正如 @Andreas 所说,客户在 SOAP 主体中嵌套了两层,因此如果您想获取它,则可以使用以下内容,但我想说它不是那么优雅:
JAXBElement<Customer> jb = unmarshaller.unmarshal(message.getSOAPBody().getFirstChild().getFirstChild(), Customer.class);
关于java - 使用 JAXB 但未获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45429576/
我是一名优秀的程序员,十分优秀!