Java 對(duì)象中含有 List

2019-01-27 22:26 更新

Java 對(duì)象中含有 List

商品信息中的有很多小項(xiàng),所以使用List類型。

@XmlAccessorType(XmlAccessType.FIELD)
public class Product {


    @XmlAttribute
    private String id;

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

測(cè)試一下。

    @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結(jié)果。

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

這是最普通的一種轉(zhuǎn)化方式。如果需要改變XML的Element的名稱,可以設(shè)置@XmlElement(name = "Item")。

Java 對(duì)象中含有 List 、XML被包裹

如果想讓生成的XML外圍被包裹起來(lái),可以加上注解@XmlElementWrapper

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


    @XmlAttribute
    private String id;

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

測(cè)試一下。

    @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結(jié)果。

<?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 有了父標(biāo)簽Items

Java對(duì)象含有非簡(jiǎn)單類型的List

商品信息中的小項(xiàng)還含有屬性。

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


    @XmlAttribute
    private String id;

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

每一個(gè)小項(xiàng)都更加復(fù)雜,注意這里的 name 使用的注解@XmlValue

@XmlAccessorType(XmlAccessType.FIELD)
public class Item {


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

測(cè)試一下。

    @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>
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)