【Groovy】json 序列化 ( 类对象转为 json 字符串 | 使用 JsonBuilder 进行转换 | 使用 JsonOutput 进行转换 | 将 json 字符串格式化输出 )
生活随笔
收集整理的這篇文章主要介紹了
【Groovy】json 序列化 ( 类对象转为 json 字符串 | 使用 JsonBuilder 进行转换 | 使用 JsonOutput 进行转换 | 将 json 字符串格式化输出 )
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
文章目錄
- 一、Groovy 對象轉為 json 字符串 ( 使用 JsonBuilder 進行轉換 )
- 二、使用 JsonOutput 將指定類型對象轉為 json 字符串
- 三、將 json 字符串格式化輸出
- 四、完整代碼示例
一、Groovy 對象轉為 json 字符串 ( 使用 JsonBuilder 進行轉換 )
聲明 Student 類 , 在其中聲明 222 個成員 , name 和 age ;
class Student {def namedef age }創建 Student 對象時 , 構造函數中為這兩個成員賦值
def student = new Student(name: "Tom", age: 18)創建 json 生成器 JsonBuilder 對象 , 構造函數中傳入 Student 對象 , 即可完成 json 轉換 , 將 Student 對象轉為了 json 字符串 ;
// json 生成器 def jsonBuilder = new JsonBuilder(student) println jsonBuilder.toString()代碼示例 :
import groovy.json.JsonBuilderclass Student {def namedef age }def student = new Student(name: "Tom", age: 18)// json 生成器 def jsonBuilder = new JsonBuilder(student) println jsonBuilder.toString()執行結果 :
{"age":18,"name":"Tom"}二、使用 JsonOutput 將指定類型對象轉為 json 字符串
JsonOutput 可以將 Map , URL , String , Number , Date , UUID , Boolean 等類型的對象轉為 json 字符串 ;
將 Student 對象轉為 json 代碼如下 :
// 將 Student 對象轉為 json def json = JsonOutput.toJson(student) println json執行結果 :
{"age":18,"name":"Tom"}三、將 json 字符串格式化輸出
使用 JsonOutput.prettyPrint(json) 可以將 json 進行格式化輸出 ,
函數原型如下 :
/*** Pretty print a JSON payload.** @param jsonPayload* @return a pretty representation of JSON payload.*/public static String prettyPrint(String jsonPayload) {}將 {"age":18,"name":"Tom"} 使用上述格式化輸出 ,
// 格式化輸出 json 數據 println JsonOutput.prettyPrint(json)輸出結果 :
{"age": 18,"name": "Tom" }四、完整代碼示例
完整代碼示例 :
import groovy.json.JsonBuilder import groovy.json.JsonOutputclass Student {def namedef age }def student = new Student(name: "Tom", age: 18)// json 生成器 def jsonBuilder = new JsonBuilder(student) println jsonBuilder.toString()// 將 Student 對象轉為 json def json = JsonOutput.toJson(student) println json// 格式化輸出 json 數據 println JsonOutput.prettyPrint(json)執行結果 :
{"age":18,"name":"Tom"} {"age":18,"name":"Tom"} {"age": 18,"name": "Tom" }總結
以上是生活随笔為你收集整理的【Groovy】json 序列化 ( 类对象转为 json 字符串 | 使用 JsonBuilder 进行转换 | 使用 JsonOutput 进行转换 | 将 json 字符串格式化输出 )的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【Groovy】json 序列化 ( J
- 下一篇: 【Groovy】json 字符串反序列化