Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下 JSON。
{ "content" : "value" }
我让杰克逊构建 JSON 字符串。
如果值是多行文本,例如:
A B C
我看到的是:{ "content" : "A\r\nB\r\nC" }
{ "content" : "A\r\nB\r\nC" }
\r\n它为每一行显式设置(CRLF)。
\r\n
我想知道我是否可以将杰克逊配置为输出:
{ "content" : "A B C" }
这是; A、B 和 C 被呈现为 3 行,而不是在 1 行中呈现为“A\r\nB\r\nC”。
如果我理解正确,你想知道杰克逊为什么会逃避换行符。如果是这样,答案可以在这里找到。