JAXB(xml和对象的转换)

1、编排(将java转换成xml)

2、反编排(将xml转换成java)

首先先编排(要在编排的类上面用一个注解)

            @XmlRootElement
JAXB(xml和对象的转换)
            JAXBContext ctx=JAXBContext.newInstance(Student.class);//jdk1.6自带
            Student stu=new Student(1,"李阳","24",new ClassRoom(10,"13信息与计算科学",2013));
            Marshaller marshaller=ctx.createMarshaller();//编排
            marshaller.marshal(stu, System.out);
JAXB(xml和对象的转换)

反编排

JAXB(xml和对象的转换)
               String xml="<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?><student><age>24</age><classroom><gra                       de>2013</grade><id>10</id><name>13信息与计算科学</name></classroom><id>1</id><name>李阳</name></student>";
               JAXBContext ctx=JAXBContext.newInstance(Student.class);//jdk1.6自带
               Unmarshaller unmarshaller=ctx.createUnmarshaller();//反编排
               Student stu=(Student) unmarshaller.unmarshal(new StringReader(xml));
               System.out.println(stu.getName());
JAXB(xml和对象的转换)

JAXB(xml和对象的转换)

上一篇:教你用Photoshop制作折纸效果的天气小图标


下一篇:Illustrator(AI)设计绘制简单的具有投影效果的文字实例教程