| | |
| | | if (resultJson.optInt("returnCode") == 0) {
|
| | | resultJson = resultJson.optJSONObject("result");
|
| | | int count = resultJson.optInt("total");
|
| | | |
| | | JSONArray array = resultJson.optJSONArray("goodsInfoList");
|
| | | if (array != null && array.size() > 0) {
|
| | | for (int i = 0; i < array.size(); i++) {
|
| | | JSONObject optJSONObject = array.optJSONObject(i);
|
| | | if (optJSONObject == null) {
|
| | | continue;
|
| | | }
|
| | | VIPGoodsInfo info = gson.fromJson(array.optJSONObject(i).toString(), VIPGoodsInfo.class);
|
| | | if (info != null)
|
| | | goodsList.add(info);
|
| | | }
|
| | | }
|
| | | |
| | | return new VIPSearchResult(goodsList, count);
|
| | | }
|
| | | return null;
|
| | | }
|
| | | |
| | | |
| | | |
| | | public static VIPSearchResult getGoodsList(int channelType,int page) {
|
| | | Map<String, String> taskParams = new HashMap<>();
|
| | | taskParams.put("channelType",channelType+"");
|
| | | taskParams.put("page", page+ "");
|
| | | taskParams.put("pageSize", 20 + "");
|
| | | taskParams.put("requestId", System.currentTimeMillis() + "_" + UUID.randomUUID());
|
| | | |
| | |
|
| | | JSONObject root = new JSONObject();
|
| | | root.put("request", JSONObject.fromObject(taskParams));
|
| | | String result = baseRequest("com.vip.adp.api.open.service.UnionGoodsService", "goodsList", root);
|
| | | System.out.println(result);
|
| | | List<VIPGoodsInfo> goodsList = new ArrayList<>();
|
| | | JSONObject resultJson = JSONObject.fromObject(result);
|
| | | Gson gson = new Gson();
|
| | | if (resultJson.optInt("returnCode") == 0) {
|
| | | resultJson = resultJson.optJSONObject("result");
|
| | | int count = resultJson.optInt("total");
|
| | | JSONArray array = resultJson.optJSONArray("goodsInfoList");
|
| | | for (int i = 0; i < array.size(); i++) {
|
| | | VIPGoodsInfo info = gson.fromJson(array.optJSONObject(i).toString(), VIPGoodsInfo.class);
|