4
Sử dụng JAXB để tạo Đối tượng từ Chuỗi XML
Làm cách nào tôi có thể sử dụng mã dưới đây để sắp xếp một chuỗi XML ánh xạ nó tới đối tượng JAXB bên dưới? JAXBContext jaxbContext = JAXBContext.newInstance(Person.class); Unmarshaller unmarshaller = jaxbContext.createUnmarshaller(); Person person = (Person) unmarshaller.unmarshal("xml string here"); @XmlRootElement(name = "Person") public class Person { @XmlElement(name = …