我正在尝试使用Java解析Geocaching GPX文件。这些GPX文件基于标准GPX XSD文件以及其他XSD文件。
对于类生成,我使用的是jaxb-maven-plugin。
除了pom.xml:
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>2.3</version>
<executions>
<execution>
<id>xjc</id>
<goals>
<goal>xjc</goal>
</goals>
</execution>
</executions>
<configuration>
<packageName>de.darkspirit510.gpxparser</packageName>
</configuration>
</plugin>
</plugins>
XSD文件:
我的问题:基本XSD定义了any属性以与另一个XSD一起扩展。使用以下代码片段解压缩我的GPX文件时(使用所有相关的类和ObjectFactory):
Gpx gpx = (Gpx) JAXBContext
.newInstance(Gpx.class, Cache.class, ObjectFactory.class)
.createUnmarshaller()
.unmarshal(inputStream);
和一个GPX文件(除外)
<wpt lat="52.171967" lon="10.55625">
<time>2015-07-14T07:00:00Z</time>
<name>GC5ZA4J</name>
<desc>Bücherei WF-Nordost by OLEarius, Traditional Cache (1/1.5)</desc>
<url>http://www.geocaching.com/seek/cache_details.aspx?guid=4ac2a247-bd30-463a-96d7-3586abfebfcc</url>
<urlname>Bücherei WF-Nordost</urlname>
<sym>Geocache</sym>
<type>Geocache|Traditional Cache</type>
<groundspeak:cache id="5109967" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
<groundspeak:name>Bücherei WF-Nordost</groundspeak:name>
<groundspeak:placed_by>OLEarius</groundspeak:placed_by>
<groundspeak:owner id="6606006">OLEarius</groundspeak:owner>
<groundspeak:type>Traditional Cache</groundspeak:type>
<groundspeak:container>Other</groundspeak:container>
[...]
</groundspeak:cache>
</wpt>
使用这种组合,我可以创建一些Java类,并解析基本XSD中定义的所有字段的地理缓存GPX文件。未编组的对象具有getAny()方法,该方法返回仅包含一个元素的List。我的IDE告诉我,该元素属于ElementNSImpl类,而不是Cache类。根据一些博客文章,GPX类和Cache类的任何元素都需要特定的注释。但是maven插件已经生成了这些注释:
GPX类:
@XmlAnyElement(lax = true)
protected List<Object> any;
缓存类:
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "cache", namespace = "http://www.groundspeak.com/cache/1/0/1")
public class Cache {
ElementNSImpl对象中的实际内容包含我的GPX文件的所有值。如何直接创建Cache类的对象?