博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[置顶] JAXB Hello World
阅读量:6083 次
发布时间:2019-06-20

本文共 2709 字,大约阅读时间需要 9 分钟。

    JAXB是Java Architecture for XML Binding的缩写。使用JAXB注解将Java对象转换成XML文件。在这篇教程中,我们将会展示如何使用JAXB来做以下事情:

  1.     Marshalling       - 将Java对象转换成XML文件。
  2.     Unmarshalling - 将XML内容转换成Java对象。

    本文使用到的相关技术:

  1.     JDK 1.6
  2.     JAXB 2.0

    使用JAXB很简单。只需用JAXB注解标注对象,然后使用jaxbMarshaller.marshal() 或者 jaxbMarshaller.unmarshal() 来做 XML/Object 的转换工作。

  1.JAXB 依赖 

    如果你使用的时JDK1.6或以上版本,你不需要添加额外的类库,因为JAXB被绑定在JDK1.6中。

    注释:

             如果你使用的时JDK < 1.6,你需要将下载的"jaxb-api.jar"和"jaxb-impl.jar"包添加到你的项目CLASSPATH中。

     

  2.JAXB 注解(Annotation)

    如果一个对象需要被转换成XML文件,或者从XML文件中生成,该对象需要用JAXB注解来标注。这些注解光凭名字就知道是什么意思了。具体可参考官网:

   

package com.jaxb.core; import javax.xml.bind.annotation.XmlAttribute;import javax.xml.bind.annotation.XmlElement;import javax.xml.bind.annotation.XmlRootElement; @XmlRootElementpublic class Customer { 	String name;	int age;	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;	} }

    3.对象转换成XML

        JAXB marshalling例子,将customer对象转换成XML文件。jaxbMarshaller.marshal()包含了许多重载方法,哪个输出符合你的要求就选择哪个方法。

package com.jaxb.core; import java.io.File;import javax.xml.bind.JAXBContext;import javax.xml.bind.JAXBException;import javax.xml.bind.Marshaller; public class JAXBExample {	public static void main(String[] args) { 	  Customer customer = new Customer();	  customer.setId(100);	  customer.setName("benson");	  customer.setAge(23); 	  try { 		File file = new File("C:\\file.xml");		JAXBContext jaxbContext = JAXBContext.newInstance(Customer.class);		Marshaller jaxbMarshaller = jaxbContext.createMarshaller(); 		// output pretty printed		jaxbMarshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true); 		jaxbMarshaller.marshal(customer, file);		jaxbMarshaller.marshal(customer, System.out); 	      } catch (JAXBException e) {		e.printStackTrace();	      } 	}}

 

    输出:

23
benson

 

    4.XML转换成对象:

    JAXB unmarshalling例子,将XML文件内容转换成customer对象。jaxbMarshaller.unmarshal()包含了许多重载方法,哪个适合你的输出,你就选择哪个方法。

package com.jaxb.core; import java.io.File;import javax.xml.bind.JAXBContext;import javax.xml.bind.JAXBException;import javax.xml.bind.Unmarshaller; public class JAXBExample {	public static void main(String[] args) { 	 try { 		File file = new File("C:\\file.xml");		JAXBContext jaxbContext = JAXBContext.newInstance(Customer.class); 		Unmarshaller jaxbUnmarshaller = jaxbContext.createUnmarshaller();		Customer customer = (Customer) jaxbUnmarshaller.unmarshal(file);		System.out.println(customer); 	  } catch (JAXBException e) {		e.printStackTrace();	  } 	}}

    输出:

Customer [name=benson, age=23, id=100]

 

 

转载地址:http://gtkwa.baihongyu.com/

你可能感兴趣的文章
exchange 2010 队列删除
查看>>
「翻译」逐步替换Sass
查看>>
H5实现全屏与F11全屏
查看>>
处理excel表的列
查看>>
C#数据采集类
查看>>
quicksort
查看>>
【BZOJ2019】nim
查看>>
四部曲
查看>>
LINUX内核调试过程
查看>>
【HDOJ】3553 Just a String
查看>>
Java 集合深入理解(7):ArrayList
查看>>
2019年春季学期第四周作业
查看>>
linux环境配置
查看>>
ASP.NET MVC中从前台页面视图(View)传递数据到后台控制器(Controller)方式
查看>>
一个想法(续二):换个角度思考如何解决IT企业招聘难的问题!
查看>>
tomcat指定配置文件路径方法
查看>>
linux下查看各硬件型号
查看>>
epoll的lt和et模式的实验
查看>>
Flux OOM实例
查看>>
07-k8s-dns
查看>>