The format string json fastjson transformed into a set of list

 1.gameListStr = "[{"gameId":"1","gameName":"哈哈"},{"gameId":"2","gameName":"呵呵"}]";
2. List<Game> gameList = JSONObject.parseArray(gameListStr, Game.class);
public class Game {
   public String gameId;
   public String gameName;

   public String getGameId() {
      return gameId;
   }

   public void setGameId(String gameId) {
      this.gameId = gameId;
   }

   public String getGameName() {
      return gameName;
   }

   public void setGameName(String gameName) {
      this.gameName = gameName;
   }
}

 

Guess you like

Origin www.cnblogs.com/qingmuchuanqi48/p/11622399.html