
Do you want to add the \n to all the properties of your json to convert the json look to pretty json.
public class NgDevPrettyJson { public static void main(String[] args){ JsonParser parser = new JsonParser(); JsonObject json = parser.parse(jsonString).getAsJsonObject(); Gson gson = new GsonBuilder().setPrettyPrinting().create(); String prettyJson = gson.toJson(json); return prettyJson; } }