色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

java mode list json

黃文隆1年前7瀏覽0評論

在Java中,我們經常需要將數據轉換為JSON格式,而使用Google的GSON庫可以很方便地完成這個任務。通過使用Java中的List對象,我們可以存儲一組數據,并將其轉換為JSON格式,以便于在其他平臺進行處理。

//導入GSON庫
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import java.util.List;
//定義一個數據結構
class Person {
String name;
int age;
String gender;
public Person(String name, int age, String gender) {
this.name = name;
this.age = age;
this.gender = gender;
}
}
public class Main {
public static void main(String[] args) {
//創(chuàng)建一個List對象,并添加三個Person數據
ListpersonList = new ArrayList<>();
personList.add(new Person("Tom", 25, "Male"));
personList.add(new Person("Jane", 30, "Female"));
personList.add(new Person("Bob", 40, "Male"));
//使用GSON庫將List對象轉換為JSON格式
Gson gson = new GsonBuilder().setPrettyPrinting().create();
String json = gson.toJson(personList);
//輸出JSON結果
System.out.println(json);
}
}

以上代碼中,我們定義了一個Person類來存儲每個數據項的信息。利用List實例來存儲多個數據項,并利用GSON庫將List轉換為JSON格式字符串。在這個例子中,我們使用了GsonBuilder.setPrettyPrinting()來讓輸出的JSON字符串更加美觀易讀。