Eclipse安裝GSON,使用GSON轉換Java Object到JSON

書香門第發表於2020-12-25

在eclipse裡安裝GSON

  1. 從這裡選擇合適的GSON版本,下載GSON的jar檔案:https://repo1.maven.org/maven2/com/google/code/gson/gson/

  2. 儲存jar檔案到本地目錄

  3. 選中project點選滑鼠右鍵,選擇"Build Path" -> “Configure Build Path”
    在這裡插入圖片描述

  4. 選擇"Java Build Path", 開啟"Libraries",把jar檔案加入到"Classpath"
    在這裡插入圖片描述

建立一個物件並轉換成JSON

例如我們要建立這樣一個JSON文字:

{"TRAILER_ID":[{"exists":true}]}

可以使用如下程式碼完成:

Map<String, List<Map<String, Boolean>>> filterAttributes = new HashMap<>();
Map<String, Boolean> attributeExistFilter = new HashMap<>();
attributeExistFilter.put("exists", Boolean.TRUE);
filterAttributes.put("TRAILER_ID", Arrays.asList(attributeExistFilter));
System.out.println(new Gson().toJson(filterAttributes));

相關文章