Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のようなものを解析するにはどうすればよいですか。
<?xml version="1.0"> <response>1</response>
?
あなたが持つことができます:
@XmlRootElement @XmlAccessorType(XmlAccessType.FIELD) public class Response { @XmlValue private int value: }
または、次のこともできます。
Integer response = unmarshaller.unmarshal(xml, Integer.class).getValue();