JsonArrayをそのままListに変換する。
reflectパッケージのTypeを使う
JSONArray jsonArray;
//jsonArrayに何か値が入る
Gson gson = new Gson();
Type listType = new TypeToken<List<Dto>>() {}.getType();
List<Dto> dtoList = gson.fromJson(jsonArray.toString(), listType);
Go to list of users who liked
More than 5 years have passed since last update.
JsonArrayをそのままListに変換する。
reflectパッケージのTypeを使う
JSONArray jsonArray;
//jsonArrayに何か値が入る
Gson gson = new Gson();
Type listType = new TypeToken<List<Dto>>() {}.getType();
List<Dto> dtoList = gson.fromJson(jsonArray.toString(), listType);
Register as a new user and use Qiita more conveniently
Go to list of users who liked