我如何解析这样的事情:
<?xml version="1.0">
<response>1</response>
答案 0 :(得分:1)
你可以:
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Response {
@XmlValue
private int value:
}
或者你可以这样做:
Integer response = unmarshaller.unmarshal(xml, Integer.class).getValue();