<?xml version="1.0"?>
<rss xmlns:g="http://base.google.com/ns/1.0" version="2.0">
<channel>
<title>SSS Product Feed</title>
<link>https://en-ae.sssports.com/</link>
<description><![CDATA[The largest sports ]]></description>
<item>
<g:id>NIKE315122-001</g:id>
<g:title><![CDATA[Nike Air Force 1 Low 07 Shoe]]></g:title>
<g:sport>Lifestyle</g:sport>
</item>
<item>
<g:id>NIKE315122-002</g:id>
<g:title><![CDATA[Nike Air Force 1 Low 07 Shoe]]></g:title>
<g:sport>Lifestyle</g:sport>
</item>
</channel>
</rss>
这是我想读取和解析的示例xml文件。
我有这样的Java类。...
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Rss {
@XmlElement(name="channel")
private Channel channel;
public Channel getChannel() {
return channel;
}
public void setChannel(Channel channel) {
this.channel = channel;
}
}
另一类是
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name="item")
public class Item {
@XmlElement(name="g:id")
private String id;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
最后一个类别是
public class Channel {
private List<Item> itemList;
@XmlElement(name="item")
public List<Item> getItemList() {
return itemList;
}
public void setItemList(List<Item> itemList) {
this.itemList = itemList;
}
}
这是我正在尝试做的..请帮助我在做错的事情,因为我从xml中提取的所有值都返回null .....
答案 0 :(得分:1)
您的Rss
和Channel
类对我来说不错。
问题出在您的Item
类中,尤其是在带有命名空间的元素中。
要为<g:id>
元素建模,一定不能使用@XmlElement(name = "g:id")
。
相反,您需要使用@XmlElement(name = "id", namespace = "http://base.google.com/ns/1.0")
。
这对应于XML文件中给出的名称空间定义xmlns:g="http://base.google.com/ns/1.0"
。
顺便说一句:@XmlRootElement
类上不需要Item
。
您仅在Rss
类上需要它,因为<rss>
是XML根元素。
完整的Item
类如下所示:
@XmlAccessorType(XmlAccessType.FIELD)
public class Item {
@XmlElement(name = "id", namespace = "http://base.google.com/ns/1.0")
private String id;
@XmlElement(name = "title", namespace = "http://base.google.com/ns/1.0")
private String title;
@XmlElement(name = "sport", namespace = "http://base.google.com/ns/1.0")
private String sport;
// public getters and setters (omitted here for brevity)
}
您可以在此处找到更多背景信息:
@Xml...
annotations的Javadoc