Looking through the documentation and source code I don\'t see a clear way to do this. Curious if I\'m missing something.
Say I receive an InputStream from a server resp
If you have the JsonParser then you can use jsonParser.readValueAsTree().toString().
JsonParser
jsonParser.readValueAsTree().toString()
However, this likely requires that the JSON being parsed is indeed valid JSON.