1

我创建了一个看起来像这样的类游戏:

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 数组?

4

2 回答 2

2

使用 Gson:https ://sites.google.com/site/gson/gson-user-guide#TOC-Using-Gson

Game game = new Game();
Gson gson = new Gson();
String json = gson.toJson(game); 
于 2013-03-01T13:42:59.970 回答
1

最好的办法是进入 GSON。GSON 网站

public class ExampleObject {
    public static final String API_KEY = "get_response";
    private static final String OFFSETS = "offsets";

    @SerializedName(OFFSETS)
    private List<Integer> mOffsets;



    public ExampleObject() {
        super();
    }

    public String getAPIKey() {
        return API_KEY;
    }

    public List<Integer> getOffsets() {
        return mOffsets;
    }
}
于 2013-03-01T13:43:08.220 回答