格式化 Json 数据输出

fastjson


private String prettyJson(String json){
    JSONObject jsonObject = JSON.parseObject(json);
    return JSONObject.toJSONString(jsonObject,true);

gson

private static String toPrettyFormat(String json) {
	JsonParser jsonParser = new JsonParser();
	JsonObject jsonObject = jsonParser.parse(json).getAsJsonObject();
	Gson gson = new GsonBuilder().setPrettyPrinting().create();
	return gson.toJson(jsonObject);
}

jackson

import com.fasterxml.jackson.databind.ObjectMapper
import com.fasterxml.jackson.databind.SerializationFeature

object JacksonPrettyPrintExample extends App {
  // 创建一个 ObjectMapper
  val objectMapper = new ObjectMapper()
  objectMapper.enable(SerializationFeature.INDENT_OUTPUT) // 启用漂亮输出

  // 创建一个简单的 Map 作为 JSON 数据
  val data = Map("name" -> "John", "age" -> 30, "city" -> "New York")

  // 将 Map 转换为 JSON 字符串并格式化输出
  val prettyJson = objectMapper.writeValueAsString(data)
  println(prettyJson)
}

你可能感兴趣的:(json,java,前端)