I have the following json:
{"test":"example"}
I use the following code from Faster XML Jackson.
JsonParser jp = factory.createParser("{\"test\":\"example\"}");
json = mapper.readTree(jp);
System.out.println(json.get("test").toString());
It outputs:
"example"
Is there a setting in Jackson to remove the double quotes?