codecamp

使用注解 @XmlList

使用注解 @XmlList

在JAXB 中,有一个注解 @XmlList主要是为了在一个XML的Element中添加多个值。

@XmlAccessorType(XmlAccessType.FIELD)
public class Product4 {


    @XmlAttribute
    private String id;

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

测试一下。

    @Test
    public void test4() throws JAXBException {
        Product4 product = new Product4();
        product.setId("1304");
        product.setItem(Arrays.asList("ItemA","ItemB","ItemC"));

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

生成的XMl 如下:

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

可以看到,item包含了List中的所有数据。

Java 对象中含有 List
Map节点的名称变更
温馨提示
下载编程狮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; }