Java XStream 将 XML 转换为对象

标签 java xstream

我正在使用XStream将 XML 字符串转换为 Java 对象。

我有大量数据,但我发布了下面的最小代码:

XStream xstream = new XStream(new StaxDriver());
xstream.alias("data", DetList.class);
xstream.alias("i", Details.class);
String s = new String("<data>\n"
           +"\t<i Name='asia' type='continent' id='11'></i>\n"
           +"\t<i Name='africa' type='continent' id='12'></i>\n"
           +"\t<i Name='japan' type='country' id='13'></i>\n"
           +"</data>");
System.out.println(s);
DetList data = (DetList) xstream.fromXML(s);

当我调试时,数据始终为null

这是我的 DetList 类:

public class DetList {
    private List<Details> detlist;

    public List<Details> getDetlist() {
        return detlist;
    }

    public void setDetlist(List<Details> detlist) {
        this.detlist = detlist;
    }
}

还有我的详细信息类:

public class Details {

    private String Name;
    private String type;
    private String id;

    //Getters and Setters are here.
}

data 为 null,应该包含 i 列表。

我怎样才能让它工作?

最佳答案

如果您有兴趣,这里是您的错误。一旦找到答案我就会替换它:

Exception in thread "main" com.thoughtworks.xstream.converters.reflection.AbstractReflectionConverter$UnknownFieldException: No such field application.DetList.i
---- Debugging information ----
message             : No such field application.DetList.i
field               : i
class               : application.DetList
required-type       : application.DetList
converter-type      : com.thoughtworks.xstream.converters.reflection.ReflectionConverter
path                : /data/i
line number         : 2
version             : 1.4.9
-------------------------------
    at com.thoughtworks.xstream.converters.reflection.AbstractReflectionConverter.handleUnknownField(AbstractReflectionConverter.java:524)
    at com.thoughtworks.xstream.converters.reflection.AbstractReflectionConverter.doUnmarshal(AbstractReflectionConverter.java:375)
    at com.thoughtworks.xstream.converters.reflection.AbstractReflectionConverter.unmarshal(AbstractReflectionConverter.java:281)
    at com.thoughtworks.xstream.core.TreeUnmarshaller.convert(TreeUnmarshaller.java:72)
    at com.thoughtworks.xstream.core.AbstractReferenceUnmarshaller.convert(AbstractReferenceUnmarshaller.java:70)
    at com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:66)
    at com.thoughtworks.xstream.core.TreeUnmarshaller.convertAnother(TreeUnmarshaller.java:50)
    at com.thoughtworks.xstream.core.TreeUnmarshaller.start(TreeUnmarshaller.java:134)
    at com.thoughtworks.xstream.core.AbstractTreeMarshallingStrategy.unmarshal(AbstractTreeMarshallingStrategy.java:32)
    at com.thoughtworks.xstream.XStream.unmarshal(XStream.java:1230)
    at com.thoughtworks.xstream.XStream.unmarshal(XStream.java:1214)
    at com.thoughtworks.xstream.XStream.fromXML(XStream.java:1085)
    at com.thoughtworks.xstream.XStream.fromXML(XStream.java:1076)
    at application.Tester.main(Tester.java:15)

关于Java XStream 将 XML 转换为对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40922380/

相关文章:

java - 是否可以使用 XStream 将对象字段隐式添加到 XML 中?

java - XStream 中没有已知类类型的注释

java - 有没有办法设置Xstream序列化的顺序

java - java中的基本语言结构是什么?

java - JSP编译错误对于IBM JDK 1.5 Servlet版本2.5

java - 使用JAVA FTP连接远程服务器

java - 使用 Xstream 序列化枚举时如何指定别名

java - Maven surefire 插件不检测 Junit5 测试

java - 在 LibGDX 中检测圆是否与矩形的上半部分或下半部分相交

java - xStream 从列表检索时复制数据