在Java中輸出JSON格式可以使用Json庫,例如Gson庫。以下是一個簡單的示例代碼:
import com.google.gson.Gson;
public class Main {
public static void main(String[] args) {
// 創建一個對象
Person person = new Person("John", 30);
// 創建Gson對象
Gson gson = new Gson();
// 將對象轉換為JSON格式的字符串
String json = gson.toJson(person);
// 輸出JSON格式的字符串
System.out.println(json);
}
// 定義一個簡單的Person類
static class Person {
String name;
int age;
public Person(String name, int age) {
this.name = name;
this.age = age;
}
}
}
在上面的代碼中,我們首先創建了一個Person對象,然后使用Gson庫將該對象轉換為JSON格式的字符串,并最終輸出這個字符串。輸出結果類似于:
{"name":"John","age":30}