我正在使用XStream,我有一个XML示例:
<person>
<firstname>Joe</firstname>
<lastname>Walnes</lastname>
<phone value="1234-456" />
<fax value="9999-999" />
</person>
我想把它映射到班级
public class Person {
private String firstname;
private String lastname;
private String phone;
private String fax;
}
因此,我们的想法是将嵌套元素的属性映射到当前对象。 我试图找到任何即用型转换器但没有成功。我相信通过实施新的转换器是可能的,但也许有人已经这样做了。或者有一个我没有找到的解决方案。
更新
我想要实现的想法是省略不必要的创建和映射实体。我根本不需要电话和传真实体,我只需要在我的模型中使用它们的属性。我试图解析的XML模式对我来说是第三方,我无法改变它。
答案 0 :(得分:5)
我不知道一个即将使用的转换器会做到这一点,但写一个
是非常简单的import com.thoughtworks.xstream.converters.*;
import com.thoughtworks.xstream.io.*;
public class ValueAttributeConverter implements Converter {
public boolean canConvert(Class cls) {
return (cls == String.class);
}
public void marshal(Object source, HierarchicalStreamWriter w, MarshallingContext ctx) {
w.addAttribute("value", (String)source);
}
public Object unmarshal(HierarchicalStreamReader r, UnmarshallingContext ctx) {
return r.getAttribute("value");
}
}
您可以使用注释将转换器附加到相关字段
import com.thoughtworks.xstream.annotations.*;
@XStreamAlias("person")
public class Person {
private String firstname;
private String lastname;
@XStreamConverter(ValueAttributeConverter.class)
private String phone;
@XStreamConverter(ValueAttributeConverter.class)
private String fax;
// add appropriate constructor(s)
/** For testing purposes - not required by XStream itself */
public String toString() {
return "fn: " + firstname + ", ln: " + lastname +
", p: " + phone + ", f: " + fax;
}
}
要完成这项工作,您需要做的就是指示XStream读取注释:
XStream xs = new XStream();
xs.processAnnotations(Person.class);
Person p = (Person)xs.fromXML(
"<person>\n" +
" <firstname>Joe</firstname>\n" +
" <lastname>Walnes</lastname>\n" +
" <phone value='1234-456' />\n" +
" <fax value='9999-999' />\n" +
"</person>");
System.out.println(p);
// prints fn: Joe, ln: Walnes, p: 1234-456, f: 9999-999
答案 1 :(得分:4)
注意:我是EclipseLink JAXB (MOXy)潜在客户和JAXB (JSR-222)专家组的成员。
如果您愿意使用XStream以外的库,下面是如何利用 EclipseLink JAXB(MOXy)中的@XmlPath
扩展名。
<强>人强>
@XmlPath
注释允许您通过XPath将字段/属性映射到XML文档中的位置(请参阅:http://blog.bdoughan.com/2010/07/xpath-based-mapping.html)。
package forum12425401;
import javax.xml.bind.annotation.*;
import org.eclipse.persistence.oxm.annotations.XmlPath;
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class Person {
private String firstname;
private String lastname;
@XmlPath("phone/@value")
private String phone;
@XmlPath("fax/@value")
private String fax;
}
<强> jaxb.properties 强>
要将MOXy指定为JAXB提供程序,您需要在与域模型相同的程序包中包含名为jaxb.properties
的文件,并带有以下条目(请参阅:http://blog.bdoughan.com/2011/05/specifying-eclipselink-moxy-as-your.html):
javax.xml.bind.context.factory=org.eclipse.persistence.jaxb.JAXBContextFactory
<强>演示强>
下面的代码会将XML转换为您的域模型,然后将域模型写回XML。
package forum12425401;
import java.io.File;
import javax.xml.bind.*;
public class Demo {
public static void main(String[] args) throws Exception {
JAXBContext jc = JAXBContext.newInstance(Person.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();
File xml = new File("src/forum12425401/input.xml");
Person person = (Person) unmarshaller.unmarshal(xml);
Marshaller marshaller = jc.createMarshaller();
marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
marshaller.marshal(person, System.out);
}
}
<强> input.xml中/输出强>
<?xml version="1.0" encoding="UTF-8"?>
<person>
<firstname>Joe</firstname>
<lastname>Walnes</lastname>
<phone value="1234-456"/>
<fax value="9999-999"/>
</person>
答案 2 :(得分:0)
请参阅XStream Alias教程的“属性别名”部分:http://x-stream.github.io/alias-tutorial.html。