这一定是一个新手问题,但我无法从http://x-stream.github.io/获得它。
好吧,我有以下xml字符串
<cat age="4" >
<name>Garfield</name>
</cat>
需要映射到:
class Cat {
int age;
String name;
}
使用XStream有一种简单的方法吗?如果没有,我还能尝试什么?
提前致谢。
答案 0 :(得分:3)
如此注释您的课程(详情请查看http://x-stream.github.io/annotations-tutorial.html):
@XStreamAlias("cat")
class Cat {
@XStreamAsAttribute
int age;
String name;
}
现在只需按如下方式使用XStream:
xstream = new XStream();
xstream.processAnnotations(Cat.class);
Cat roundtripGarfield = (Cat)xstream.fromXML(xstream.toXML(garfield));
答案 1 :(得分:0)
实际上,XStream网站上有一个答案 - 在转换器教程中;)
来自http://x-stream.github.io/converter-tutorial.html:
public Object unmarshal(HierarchicalStreamReader reader,
UnmarshallingContext context) {
Birthday birthday = new Birthday();
if (reader.getAttribute("gender").charAt(0) == 'm') {
birthday.setGenderMale();
} else {
birthday.setGenderFemale();
}
reader.moveDown();
Person person = (Person)context.convertAnother(birthday, Person.class);
birthday.setPerson(person);
reader.moveUp();
reader.moveDown();
Calendar date = (Calendar)context.convertAnother(birthday, Calendar.class);
birthday.setDate(date);
reader.moveUp();
return birthday;
}
(它位于页面的最后一个示例/代码块中。)
HTH
编辑:只是想补充一点,你想要完成整个教程,而不仅仅是寻找代码块。您需要创建自己的转换器并将其注册到XStream实例。 (可能很明显,但以防万一......)答案 2 :(得分:-1)
您可以使用XPath。
它在现代JVM上的速度非常快,并且具有可转移的技能。例如。你可以在.NET等上使用XPath