摘要:
package com.yinhai.liyang.stax;import java.io.IOException;import java.io.InputStream;import javax.xml.stream.XMLInputFactory;import javax.xml.stream.XMLStreamException;import javax.xml.stream.XMLStreamReader;import org.junit.Test;/*** * 基于光标的模型 * */public class TestStax { /** * 心得:可以通过不同的值得到不... 阅读全文
摘要:
1、编排(将java转换成xml)2、反编排(将xml转换成java)首先先编排(要在编排的类上面用一个注解) @XmlRootElement JAXBContext ctx=JAXBContext.newInstance(Student.class);//jdk1.6自带 Student stu=new Student(1,"李阳","24",new ClassRoom(10,"13信息与计算科学",2013)); Marshaller marshaller=ctx.createMarshaller();... 阅读全文