码迷,mamicode.com
首页 > 其他好文 > 详细

jaxb

时间:2015-06-01 12:51:37      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

近项目原因,研究了下jaxb。jaxb是Java api xml binding的简称,是为实现java与xml数据的相互转换而定义的一个api标准。该标准以annotation的方式实现xml的转换。不用开发人员单独解析每个对象属性与xml元素的mapping关系,只需在java bean中注入简单的java annotation,其他的交给工具去处理。该工具包类能给xml数据处理带来极大方便。具体实现见下。

Java bean对象定义:

技术分享/**
技术分享 * 促销xml对象类 
技术分享 * @author daiqiang
技术分享 * 对应xml文件内容如下:
技术分享 * <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
技术分享    <promotion>
技术分享        <id>promotionId</id>
技术分享        <name>元旦促销</name>
技术分享        <type>CMS</type>
技术分享        <typeDes>CMS主推促销</typeDes>
技术分享        <startTime>2012-01-01</startTime>
技术分享        <endTime>2012-01-03</endTime>
技术分享        <products>
技术分享            <product>
技术分享                <merchantId>merchantid</merchantId>
技术分享                <num>500</num>
技术分享                <productCode>code1</productCode>
技术分享                <productId>111</productId>
技术分享                <requestId>codedata</requestId>
技术分享            </product>
技术分享            <product>
技术分享                <merchantId>merchantid2</merchantId>
技术分享                <num>800</num>
技术分享                <productCode>code2</productCode>
技术分享                <productId>2</productId>
技术分享                <requestId>codedata</requestId>
技术分享            </product>
技术分享        </products>
技术分享    </promotion>
技术分享 *
技术分享 */
技术分享@XmlRootElement(name="promotion")
技术分享@XmlAccessorType(XmlAccessType.FIELD)
技术分享public class Promotion implements Serializable{
技术分享
技术分享    private static final long serialVersionUID = 870036805093867083L;
技术分享    
技术分享    private String id;
技术分享    private String name;
技术分享    private String type;
技术分享    private String typeDes;
技术分享    private String startTime;
技术分享    private String endTime;
技术分享    
技术分享    @XmlElementWrapper(name="products")
技术分享    @XmlElement(name="product")
技术分享    private List<Product> products;
技术分享    
技术分享    /*@XmlTransient
技术分享    the field is not binded to xml
技术分享    private String testHiddenFields;*/
技术分享    //此处省略具体set get 方法。
技术分享

 

说明:上文定义了一个促销对象类Promotion.

类标注表示:

@XmlRootElement:用于定义该对象映射成xml根节点元素名,默认与类名一致。可通过@XmlRootElement(name="otherRootElement")方式指定具体名称。

 

@XmlAccessorType: 用于标识该java对象与xml映射的访问方式。有如下属性值。

PROPERTY/FIELD/PUBLIC_MEMBER/NONE

 

PROPERTY: 所有set/get方法对将被映射为xml元素.除非被XmlTransient标注例外.

 

FIELD:所有对象属性将被映射为xml元素。除非被XmlTransient标注例外.

 

PUBLIC_MEMBER每个public的get/set对方法或public field将被映射为xml元素。除非被XmlTransient标注例外.

 

NONE没有fields 或 property被映射,除非显示指定具体fields或property。

 

 

属性标注表示:

@XmlTransient:指对应属性不做xml映射。

@XmlElement(name="product"):指定属性映射时对应xml元素名称

@XmlElementWrapper(name="products"):在某些场景下,需要对映射的属性做包装处理。如例子中products List对象属性,在xml中我想在映射对所有的product元素再做一个products 元素包装,如下所示,就可以按此种方式实现。

<products>

    <product> … </product>

    <product> … </product>

    …

</products>

 

Javaxml映射方法

 

Java对象到XML

 

技术分享/**
技术分享     * convent java object to xml format String.
技术分享     * 
技术分享     * @param originalObj
技术分享     * @param xmlCharset
技术分享     *            the format of charset for xml. ie "UTF-8", "GBK"
技术分享     * @param isFragment
技术分享     *            whether or not display the header for the generated xml. such
技术分享     *            as <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
技术分享     * @return
技术分享     */
技术分享    public static String convertJava2XmlStr(Object originalObj,
技术分享            String xmlCharset, boolean isFragment) {
技术分享        String xmlStr = "";
技术分享        try {
技术分享            JAXBContext ctx = JAXBContext.newInstance(originalObj.getClass());
技术分享            Marshaller marshaller = ctx.createMarshaller();
技术分享            marshaller.setProperty(Marshaller.JAXB_ENCODING, xmlCharset);
技术分享            marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
技术分享            marshaller.setProperty(Marshaller.JAXB_FRAGMENT, isFragment);
技术分享
技术分享            ByteArrayOutputStream os = new ByteArrayOutputStream();
技术分享            marshaller.marshal(originalObj, os);
技术分享
技术分享            xmlStr = os.toString();
技术分享        } catch (PropertyException e) {
技术分享            e.printStackTrace();
技术分享        } catch (JAXBException e) {
技术分享            e.printStackTrace();
技术分享        } catch (Exception e) {
技术分享            e.printStackTrace();
技术分享        }
技术分享        return xmlStr;
技术分享    }
技术分享

 

XMLJava对象

 

技术分享/**
技术分享     * convert xml string to Java object by JAXB.
技术分享     * @param obj  to convert java object.
技术分享     * @param xmlStr    
技术分享     * @return
技术分享     */
技术分享    public static Object convertXmlStr2Java(Object obj, String xmlStr) {
技术分享        try {
技术分享            JAXBContext ctx = JAXBContext.newInstance(obj.getClass());
技术分享            InputStream source = new ByteArrayInputStream(xmlStr.getBytes());
技术分享            Unmarshaller unmarshaller = ctx.createUnmarshaller();
技术分享            obj = unmarshaller.unmarshal(source);
技术分享        } catch (JAXBException e) {
技术分享            e.printStackTrace();
技术分享        }
技术分享        return obj;
技术分享    }

jaxb

标签:

原文地址:http://www.cnblogs.com/xiamengfei/p/4543497.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!