我在使用Android Webservice时遇到了很大的麻烦。
我正在将JAXB Annotation转换为Simple Annotation。请参阅下文。
这是我的JAXB注释:
@XmlElementRef(name = "Title", namespace = "http://xxx.org/2004/07/Course", type = JAXBElement.class, required = false)
protected JAXBElement<String> title;
我使用getTitle()。value();
获取值映射到Simple Annotation后,如下所示:
@Element(name = "Title", required = false)
protected String title;
和getTitle()返回null。我怎样才能获得价值?
我无法在Android上使用JAXB。那么我怎样才能正确使用Simple Framework来获取价值?
我非常需要帮助。非常感谢。