一、简介
JAXB(Java Architecture for XML Binding) 是一个业界的标准,是一项可以根据XML Schema产生Java类的技术。该过程中,JAXB也提供了将XML实例文档反向生成Java对象树的方法,并能将Java对象树的内容重新写到XML实例文档。从另一方面来讲,JAXB提供了快速而简便的方法将XML模式绑定到Java表示,从而使得Java开发者在Java应用程序中能方便地结合XML数据和处理函数。
Java SE中的JAXB
JAXB 2.0是JDK 1.6的组成部分。JAXB 2.2.3是JDK 1.7的组成部分。
JDK中JAXB相关的重要Class和Interface:
JAXBContext类,是应用的入口,用于管理XML/Java绑定信息。
Marshaller接口,将Java对象序列化为XML数据。
Unmarshaller接口,将XML数据反序列化为Java对象。
JDK中JAXB相关的重要Annotation:
@XmlType,将Java类或枚举类型映射到XML模式类型
@XmlAccessorType(XmlAccessType.FIELD) ,控制字段或属性的序列化。FIELD表示JAXB将自动绑定Java类中的每个非静态的(static)、非瞬态的(由@XmlTransient标注)字段到XML。其他值还有XmlAccessType.PROPERTY和XmlAccessType.NONE。
@XmlAccessorOrder,控制JAXB 绑定类中属性和字段的排序。
@XmlJavaTypeAdapter,使用定制的适配器(即扩展抽象类XmlAdapter并覆盖marshal()和unmarshal()方法),以序列化Java类为XML。
@XmlElementWrapper ,对于数组或集合(即包含多个元素的成员变量),生成一个包装该数组或集合的XML元素(称为包装器)。
@XmlRootElement,将Java类或枚举类型映射到XML元素。
@XmlElement,将Java类的一个属性映射到与属性同名的一个XML元素。
@XmlAttribute,将Java类的一个属性映射到与属性同名的一个XML属性。
toXml方法是用Marshaller接口将对象转成xml数据
//将java对象Car转成xml数据
1 static void toXml() throws Exception{
JAXBContext jaxbContext = JAXBContext.newInstance(Car.class);
Marshaller marshaller = jaxbContext.createMarshaller(); Wheel wheel = new Wheel();
FuelSystem fuelSystem = new FuelSystem();
fuelSystem.setName("燃油系统");
Engine engine = new Engine();
engine.setFuelSystem(fuelSystem);
Car car = new Car();
car.setWheel(wheel);
car.setEngine(engine); marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
//marshaller.marshal(car, System.out);
marshaller.marshal(car, new FileOutputStream("src/car.xml"));
}
生成的xml文件
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<car>
<wheel>
<hub>4</hub>
<tire>4</tire>
</wheel>
<engine>
<fuelSystem>
<name>燃油系统</name>
</fuelSystem>
</engine>
</car>
//xml文件转成对象
static void Xml2Obj() throws Exception{
JAXBContext jaxbContext = JAXBContext.newInstance(Car.class);
Unmarshaller unmarshaller = jaxbContext.createUnmarshaller();
Car car = (Car) unmarshaller.unmarshal(new File("src/car.xml"));
System.out.println(car);
}
输出的值为car.toString():
Car [wheel=Wheel [tire=4, hub=4], engine=Engine [fuelSystem=FuelSystem [name=燃油系统]]]
package com.chen.jaxb; import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement; @XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Car {
private Wheel wheel;
private Engine engine;
public Wheel getWheel() {
return wheel;
}
public void setWheel(Wheel wheel) {
this.wheel = wheel;
}
public Engine getEngine() {
return engine;
}
public void setEngine(Engine engine) {
this.engine = engine;
}
@Override
public String toString() {
return "Car [wheel=" + wheel + ", engine=" + engine + "]";
}
}
package com.chen.jaxb; public class Engine {
private FuelSystem fuelSystem; public FuelSystem getFuelSystem() {
return fuelSystem;
} public void setFuelSystem(FuelSystem fuelSystem) {
this.fuelSystem = fuelSystem;
}
@Override
public String toString() {
return "Engine [fuelSystem=" + fuelSystem + "]";
}
}
package com.chen.jaxb; public class FuelSystem {
private String name; public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "FuelSystem [name=" + name + "]";
}
}
package com.chen.jaxb; public class Wheel {
int tire = 4; //轮胎
int hub = 4; //轮毂 public int getTire() {
return tire;
}
public void setTire(int tire) {
this.tire = tire;
}
public int getHub() {
return hub;
}
public void setHub(int hub) {
this.hub = hub;
}
@Override
public String toString() {
return "Wheel [tire=" + tire + ", hub=" + hub + "]";
}
}