我正在尝试解组给定的XML文件,合并这些文件中的一些信息并再次编组它们,这样我就可以生成一个XML文件。但是现在我的代码存在问题,因为我必须将名称空间声明从“http://www.google.com/schemas/sitemap/0.9”更改为“http://www.sitemaps.org/schemas/sitemap/0.9”
在我不得不改变它之前,一切都是正确的,最后我得到了这样的XML:
<url>
<loc>...</loc>
<lastmod>...</lastmod>
<changefreq>...</changefreq>
<priority>...</priority>
<xhtml:link href="..." hreflang="..."/>
<uuid>...</uuid>
<image:image>
<image:loc>...</image:loc>
</image:image>
</url>
现在,在我必须更改开头提到的命名空间之后,所有的image:image-标签都不再是最终的XML,它看起来像这样:
<url>
<loc>...</loc>
<lastmod>...</lastmod>
<changefreq>...</changefreq>
<priority>...</priority>
<xhtml:link href="..." hreflang="..."/>
<uuid>...</uuid>
</url>
在这里您可以找到一些代码片段:
我的package-info.java看起来像这样:
@XmlSchema(
namespace = "http://www.sitemaps.org/schemas/sitemap/0.9",
elementFormDefault = XmlNsForm.QUALIFIED,
xmlns={ @XmlNs(prefix="",
namespaceURI="http://www.sitemaps.org/schemas/sitemap/0.9"),
@XmlNs(prefix="image", namespaceURI="http://www.google.com/schemas/sitemap-image/1.1"),
@XmlNs(prefix="xhtml", namespaceURI="http://www.w3.org/1999/xhtml")
}
)
package ....sitemaptools.xml;
import javax.xml.bind.annotation.XmlNs;
import javax.xml.bind.annotation.XmlNsForm;
import javax.xml.bind.annotation.XmlSchema;
我的XMLImage-Class:
package ....sitemaptools.xml;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement( name = "image")
public class XMLImage {
String loc;
public String getLoc() {return loc;}
@XmlElement( name = "loc", namespace="http://www.google.com/schemas/sitemap-image/1.1")
public void setLoc(String loc) {this.loc = loc;}
}
我的Node-Class的一部分:
List<XMLImage> imageList = new ArrayList<XMLImage>();
public List<XMLImage> getImage() {return imageList;}
@XmlElement(name = "image", namespace="http://www.google.com/schemas/sitemap-image/1.1")
public void setImage(List<XMLImage> images) {this.imageList = imageList;}
public void add(XMLImage image) {
if (this.imageList == null) {
this.imageList = new ArrayList<XMLImage>();
}
this.imageList.add(image);
}
如果您需要更多信息或片段,请提前告知我们并提前致谢!
答案 0 :(得分:0)
借助此链接https://www.kevinhooke.com/2014/03/25/debugging-jaxb-unmarshalling-issues/,我设法获取更多调试信息并想出来,在我的源XML文件中,图片的网址已更改为:
http://www.google.com/schemas/sitemap-image/1.1(http)
到
http s ://www.google.com/schemas/sitemap-image/1.1(https)
所以我必须在我的代码中更改它,现在一切正常。