W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
商品信息中的有很多小項(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")
。
如果想讓生成的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
商品信息中的小項(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>
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: