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