【发布时间】:2014-05-20 12:30:39
【问题描述】:
按照一些教程 (this one) 我在控制台上没有得到相同的输出。 本教程是关于使用 JAXB API - JAXBContext、Unmarshaller、Marshaller 将 Java 对象转换为 XML 或从 XML 转换。
这是 POJO 代码:
package com.jaxb.example;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement
public class Customer {
private String name;
private int age;
private int id;
public String getName() {
return name;
}
@XmlElement
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
@XmlElement
public void setAge(int age) {
this.age = age;
}
public int getId() {
return id;
}
@XmlAttribute
public void setId(int id) {
this.id = id;
}
}
这是解组代码:
package com.jaxb.example;
import java.io.File;
import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Unmarshaller;
public class JAXBExampleTestUnmarshall {
public static void main(String [] args){
try {
File file = new File("./jaxb-data/file.xml");
JAXBContext context = JAXBContext.newInstance(Customer.class);
Unmarshaller jaxbUnmarshaller = context.createUnmarshaller();
Customer customer = (Customer)jaxbUnmarshaller.unmarshal(file);
//System.out.println(customer.getId());
//System.out.println(customer.getName());
//System.out.println(customer.getAge());
System.out.println(customer);
} catch (JAXBException e) {
// TODO: handle exception
e.printStackTrace();
}
}
}
这是./jaxb-data/file.xml文件内容:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<customer id="1">
<age>33</age>
<name>Some Name</name>
</customer>
我在运行这个课程时收到com.jaxb.example.Customer@15e8d410。
问题:为什么我在输出时没有得到Customer [name=Some Name, age=33, id=1]?
【问题讨论】: