使用 java & JSON 生成一组空的 Json 大括号

Generate an empty set of Json braces- using java & JSON

如何使用 jackson-java 生成一个空的 json 节点。我尝试使用 NullNode.instance,但是 returns

"totals":null

而我希望 totals 是一个空实例。

{
  "totals": {},
  "orderId": "550047004",
  "numberOfItems": 2
}

你应该使用 ObjectNode. It can be created with ObjectMapper:

ObjectNode node = mapper.createObjectNode();