gpt4 book ai didi

java - Fasterxml Jackson ObjectMapper 生成带有 '=' 字符的 JSON 字符串

转载 作者:行者123 更新时间:2023-12-02 02:22:40 29 4
gpt4 key购买 nike

这个问题涉及Java库com.fasterxml.jackson.core:jackson-databind:2.8.8 (jackson-databind-2.8.8.jar)

给定object是一个 POJO,具有:

@com.fasterxml.jackson.annotation.JsonRawValue
private Map<String, String> innerDetail = new HashMap<String, String>();

innerDetail.put("Auth", "{\"node\":\"VALUE\"}");

(POJO 也用 com.fasterxml.jackson.annotation.JsonInclude 进行注释)

然后调用:

com.fasterxml.jackson.databind.ObjectMapper.writeValueAsString(object)

返回 String包含:

"innerDetail":{Auth={"node":"VALUE"}

当然是= (等于)应该是 : (冒号)?

我没看到=是 JSON 语法的任何部分。

最佳答案

这是由于您使用了@JsonRawValueJavaDoc因为它说

...Warning: the resulting JSON stream may be invalid depending on your input value.

关于java - Fasterxml Jackson ObjectMapper 生成带有 '=' 字符的 JSON 字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48285318/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com