2

次のようなものを解析するにはどうすればよいですか。

<?xml version="1.0">
<response>1</response>

?

4

1 に答える 1

1

あなたが持つことができます:

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Response {

    @XmlValue
    private int value:

}

または、次のこともできます。

Integer response = unmarshaller.unmarshal(xml, Integer.class).getValue();
于 2013-10-12T19:56:59.133 に答える