codecamp

Java 对象中含有 List

Java 对象中含有 List

商品信息中的有很多小项,所以使用List类型。

@XmlAccessorType(XmlAccessType.FIELD)
public class Product {


    @XmlAttribute
    private String id;

    
    private List<String> item;
//  setters,getters
}

测试一下。

    @Test 
    public void test1() throws JAXBException {
        Product product = new Product();
        product.setId("1301");
        product.setItem(Arrays.asList("ItemA","ItemB","ItemC"));

        
        JAXB.marshal(product, System.out);
    }

XML结果。

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<product id="1301">
    <item>ItemA</item>
    <item>ItemB</item>
    <item>ItemC</item>
</product>

这是最普通的一种转化方式。如果需要改变XML的Element的名称,可以设置@XmlElement(name = "Item")

Java 对象中含有 List 、XML被包裹

如果想让生成的XML外围被包裹起来,可以加上注解@XmlElementWrapper

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Product2 {


    @XmlAttribute
    private String id;

    
    @XmlElementWrapper(name = "Items")
    private List<String> item;
//  setters,getters
}

测试一下。

    @Test
    public void test2() throws JAXBException {
        Product2 product = new Product2();
        product.setId("1302");
        product.setItem(Arrays.asList("ItemA","ItemB","ItemC"));

        
        JAXB.marshal(product, System.out);
    }

XML结果。

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<product2 id="1302">
    <Items>
        <item>ItemA</item>
        <item>ItemB</item>
        <item>ItemC</item>
    </Items>
</product2>

可以看到,item 有了父标签Items

Java对象含有非简单类型的List

商品信息中的小项还含有属性。

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Product3 {


    @XmlAttribute
    private String id;

    
    private List<Item> item;
//  setters,getters
}

每一个小项都更加复杂,注意这里的 name 使用的注解@XmlValue

@XmlAccessorType(XmlAccessType.FIELD)
public class Item {


    @XmlAttribute
    private String id;
    @XmlValue
    private String name;
//  setters,getters
}

测试一下。

    @Test
    public void test3() throws JAXBException {
        Product3 product = new Product3();
        product.setId("1303");
        product.setItem(Arrays.asList(new Item("13031","ItemA"),new Item("13032","ItemB"),new Item("13033","ItemC")));

        
        JAXB.marshal(product, System.out);
    }

生成的XML。

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<product3 id="1303">
    <item id="13031">ItemA</item>
    <item id="13032">ItemB</item>
    <item id="13033">ItemC</item>
</product3>
利用继承关系
使用注解 @XmlList
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

JAXB 简单转化案例

JAXB 之 Trang

简单XML生成——Marshaller数据源

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }