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.
由于复杂的原因,我的原始输入是一堆 Pair < JsonToken, String >。有没有办法让我的 Jackson ObjectMapper 从此表单反序列化 JSON?我想如果我可以将它转换为 JsonNode 树或 JsonParser 它会起作用。让我自己实现 JsonParser 看起来很痛苦。
您也许可以从中建立一个TokenBuffer;并且由于它同时实现了JsonParserand JsonGenerator,因此可以将其传递给其余的功能。
TokenBuffer
JsonParser
JsonGenerator