How to Add \n to Json properties (or) convert json to pretty Json ?

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;
}
}