我正在使用XStream将对象解/序列化为JSON。
我需要将JSON转换为XML属性。
例如:
JSON
{
"Student":{
"@Studentname":"Ravi",
"@age":21,
"college":"Anna University"
}
}
输出XML
<Student name="Ravi" age=21>
<college>Anna University</college>
</Student>
码
XStream xstream = new XStream();
xstream.registerConverter(new MapEntryConverter());
xstream.alias("Student", Map.class);
xml = xstream.toXML(json.map()); //json sotres the value
感谢您的补充。