我创建了一个看起来像这样的类游戏:
public class Game{
private String name;
private String location;
private int participants;
public Game(String name, String location, int participants){
this.name = name;
this.location = location;
this. participants = participatns;
}
//getters and setters of all properties
我有一个看起来像这样的 ArrayList:
ArrayList<Game>gameList = new ArrayList<Game>();
这个 ArrayList 包含 5 个游戏。我想将这些游戏发送到一个 php 脚本,所以我认为最聪明的方法是创建一个 JSON 对象数组并将它们发送到 php 脚本,因为这些游戏在某些时候也可能是 100 个或更多。
我的问题是,如何创建 Game 对象的 JSON 数组?