我正在编写一个代码来解析XML然后转换为POJO。我正在使用杰克逊..
我想将子元素解析为String。我怎么能这样做?
例如:
<content>
<template>
<value>
<property>
</property>
</value>
</template>
<template>
<value>
<property>
</property>
</value>
</template>
</content>
我的POJO应该是:
class Content {
List<Template> template;
}
class Template {
String allString;
}
我想将模板的子元素作为所有字符串..所以
的值allString = "<value>
<property>
</property>
</value>";