When using jackson, one can use
JsonFactory jsonFactory = new JsonFactory();
ObjectMapper objectMapper = new ObjectMapper(jsonFactory);
objectMapper.readValue(jsonString, TYPE);
to transfer json to Object or using writeValueAsString vice versa.
I'd like to know is there any function in simdjson can do the same thing?
When using jackson, one can use
to transfer json to Object or using
writeValueAsStringvice versa.I'd like to know is there any function in simdjson can do the same thing?