我想在json字符串中添加其他属性,而不将String转换为任何对象格式

时间:2016-08-15 19:44:32

标签: java json

我想为json字符串添加额外的属性而不将String转换为任何对象格式(我现在正在进行转换,这需要30毫秒的时间,我想避免转换时间),所以有什么方法可以添加属性到json字符串而不将有效负载转换为任何对象格式?

例如:

{
  "type": "some type",
  "data": [{
    "email": "email id",
    "content": {
      "some filed": "filed value"
    }
  }]
}

我需要添加新字段后的有效负载,例如。,

{
  "type": "some type",
  "data": [{
    "email": "email id",
    "content": {
      "some filed": "filed value",
      "new field": "New value"
    }
  }]
}

0 个答案:

没有答案