我需要将对象的String属性序列化为嵌套的JSON而不进行任何转义等。所以给出了json:
{
"regularProperty" : "Test here",
"nestedJSON" : {
"propertyArray" : [1,2,3],
"propertyText" : "new Text",
"anotherObject" : { ... }
}
}
nestedJSON 属性必须包含文本
{
"propertyArray" : [1,2,3],
"propertyText" : "new Text",
"anotherObject" : { ... }
}
序列化/反序列化怎么可能?任何特定的注释或数据类型?