如何使用 JAXB 序列化和反序列化对象?
我有一个问题。我想使用 JAXB 将一个对象转换为另一个对象。如,我有一个类,和另一个类,两者都有相同的参数,实际上两者都是相同的(复制粘贴),但包不同。我想使用执行它们之间的转换。com.home.Student
com.school.Student
JAXB
如何做到这一点,请帮助我。
我有一个问题。我想使用 JAXB 将一个对象转换为另一个对象。如,我有一个类,和另一个类,两者都有相同的参数,实际上两者都是相同的(复制粘贴),但包不同。我想使用执行它们之间的转换。com.home.Student
com.school.Student
JAXB
如何做到这一点,请帮助我。
如果您包含一些解释问题的代码,那就太好了。
JAXB 101 说您应该放置正确的注释,然后可以正确地序列化和反序列化。您应该使用@XmlRootElement,@XmlElement,@XmlAttribute等正确注释类
例如:
@XmlRootElement(name="student")
@XmlAccessorType(XmlAccessType.NONE)
class Student {
@XmlElement(name="name")
private String name;
@XmlElement(name="age")
private int age;
public Student() {
}
public String getName() { return name; }
public int getAge() { return age; }
}
然后,您可以使用 JAXB Marshaller 对其进行序列化:
StringWriter writer = new StringWriter();
JAXBContext context = JAXBContext.newInstance(Student.class);
Marshaller m = context.createMarshaller();
m.marshal(student, writer);
并通过取消填充输入来反序列化它.
JAXBContext context = JAXBContext.newInstance(Student.class);
Unmarshaller m = context.createUnmarshaller();
return (Student)m.unmarshal(new StringReader(input));
请务必查看我上面提到的JavaDoc,因为有很多方法可以做到这一点。
如果无法修改类,则仍可以使用 JAXB(或者可以使用 XStream),前提是您的类如下所示:
class Student {
private String name;
private int age;
public Student() {
}
public void setName(String name) { this.name = name; }
public String getName() { return name; }
public void setAge(int age) { this.age = age; }
public int getAge() { return age; }
}
您可以通过执行以下操作来序列化它:
Student student = new Student();
student.setAge(25);
student.setName('FooBar');
StringWriter writer = new StringWriter();
JAXBContext context = JAXBContext.newInstance(Student.class);
Marshaller m = context.createMarshaller();
m.marshal(new JAXBElement(new QName(Student.class.getSimpleName()), Student.class, student), writer);
System.out.println(writer.toString());
如果您使用的是 XStream,也可以在没有注释的情况下进行序列化(并且更易于控制)。http://x-stream.github.io/tutorial.html
您可以执行以下操作。
注意:
学生
package com.home;
public class Student {
private String name;
private Status status;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Status getStatus() {
return status;
}
public void setStatus(Status status) {
this.status = status;
}
}
com.home.status
package com.home;
public enum Status {
FULL_TIME("F"),
PART_TIME("P");
private final String code;
Status(String code) {
this.code = code;
}
public String getCode() {
return code;
}
}
学生
package com.school;
public class Student {
private String name;
private Status status;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Status getStatus() {
return status;
}
public void setStatus(Status status) {
this.status = status;
}
}
com.school.status
package com.school;
public enum Status {
FULL_TIME("F"),
PART_TIME("P");
private final String code;
Status(String code) {
this.code = code;
}
public String getCode() {
return code;
}
}
com.example.demo;
package com.example;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.Unmarshaller;
import javax.xml.bind.util.JAXBSource;
import javax.xml.namespace.QName;
public class Demo {
public static void main(String[] args) throws Exception {
com.home.Student studentA = new com.home.Student();
studentA.setName("Jane Doe");
studentA.setStatus(com.home.Status.FULL_TIME);
JAXBContext contextA = JAXBContext.newInstance(com.home.Student.class);
JAXBElement<com.home.Student> jaxbElementA = new JAXBElement(new QName("student"), com.home.Student.class, studentA);
JAXBSource sourceA = new JAXBSource(contextA, jaxbElementA);
JAXBContext contextB = JAXBContext.newInstance(com.school.Student.class);
Unmarshaller unmarshallerB = contextB.createUnmarshaller();
JAXBElement<com.school.Student> jaxbElementB = unmarshallerB.unmarshal(sourceA, com.school.Student.class);
com.school.Student studentB = jaxbElementB.getValue();
System.out.println(studentB.getName());
System.out.println(studentB.getStatus().getCode());
}
}