0

我对 Android 开发相当陌生,我正在创建一个需要我使用 Zomato Rest API 的应用程序。我正在使用 Koush ION 库https://github.com/koush/ion发送 http 请求并接收响应。为了使用这个库,我只需创建一个模型 java 类,其中的键作为 java 实例变量并调用这行代码。

     Ion.with(getActivity())
                    .load("https://developers.zomato.com/api/v2.1/geocode?lat=25.12819&lon=55.22724")
                    .setHeader("user-key",my-user-key)
                    .asJsonArray()
                    .setCallback(new FutureCallback<JsonArray>() {
                        @Override
                        public void onCompleted(Exception e, JsonArray result) {
                            if (e != null) {
                                Log.d("FoodFragment", "Error loading food"+e.toString());
                                Toast.makeText(getActivity(), "error loading food", Toast.LENGTH_LONG).show();
                                return;
                            }
                            else{
                                Log.d("FoodFragment", "Size= " + result.size() + "; " + result.toString());
                                sTrips = (List<RestaurantsZomato>) new Gson().fromJson(result.toString(), new TypeToken<List<RestaurantsZomato>>() {

                                }.getType());
                                adapter = new RestaurantAdapter(sTrips);
                                recyclerView.setAdapter(adapter);
                                mSwipeRefreshLayout.setRefreshing(false);
                                ((RestaurantAdapter) adapter).setOnItemClickListener(new RestaurantAdapter.MyClickListener() {
                                    @Override
                                    public void onItemClick(int position, View v) {
                                        Toast.makeText(getActivity(), "Item Clicked", Toast.LENGTH_LONG).show();
                                    }
                                });
                            }
                        }
                    });
        }

根据 Zomato API 文档,响应将如下所示 -

{"nearby_restaurants": {
"1": {
  "restaurant": {

  }
},
"2": {
  "restaurant": {
  }
},
"3": {
  "restaurant": {

  }
},
"4": {
  "restaurant": {

  }
},
"5": {
  "restaurant": {

  }
},
"6": {
  "restaurant": {

  }
},
"7": {

  }
},
"8": {
  "restaurant": {

  }
},
"9": {
  "restaurant": {

  }
}

我的 RestaurantZomato 课程看起来像这样 -

    public class RestaurantsZomato {
            public NearbyRestaurants nearby_restaurants;
            public static class NearbyRestaurants {
                   public List<RestaurantDetails> restaurant;
     }}

RestaurantDetails 类包含“restaurant”标签内的所有内容。我的问题是如何表示模型类中 JsonResponse 中存在的“1”、“2”、“3”等。

如果这个问题很愚蠢,我很抱歉。正如我所说,我是 Android 开发的新手,任何能指引我正确方向的资源都将不胜感激!

4

3 回答 3

1

在 Json 格式中,这个

{  
   "nearby_restaurants":{  
      "1":{  
         "restaurant":{  

         }
      },
      "2":{  
         "restaurant":{  

         }
      }
   }
}

对应于包含两个对象“1”和“2”的对象“nearby_restaurants”,这两个对象都包含具有空值的对象“restaurant”。

您正在尝试填充 java List 对象,但在您的 Json 中不存在任何列表或数组!

看看这个这个,你会解决你的问题。:-)

编辑

试试这个代码

JsonObject jsonObject = yourJsonElement.getAsJsonObject();
JsonObject nearby_restaurants = jsonObject.get("nearby_restaurants").getAsJsonObject();
Set<Entry<String, JsonElement>> objects =  nearby_restaurants.entrySet();

Gson gson = new Gson();

for (Entry<String, JsonElement> entry : objects) {
    System.out.println(entry.getKey() + "/" + entry.getValue());
}
于 2016-05-06T07:03:34.743 回答
0

公开列表<RestaurantDetails>餐厅;返回数组

公共餐厅详情餐厅;返回对象

您的 API 返回对象。不返回数组

尝试这个!!

public class RestaurantsZomato {
        public NearbyRestaurants nearby_restaurants;
        public static class NearbyRestaurants {
               public RestaurantDetails restaurant;
 }}

更新

您的 Json 字符串返回 JsonObject。您必须使用 JsonObject

Ion.with(context)
.load("https://developers.zomato.com/api/v2.1/geocode?lat=25.12819&lon=55.22724")
.asJsonObject()
.setCallback(new FutureCallback<JsonObject>() {
@Override
public void onCompleted(Exception e, JsonObject result) {
    // do stuff with the result or error
}
 });
于 2016-05-06T07:08:57.577 回答
0

问题是您在“nearby_restaurants”中接收到一个 JSON 对象并试图将其作为 JSONArray 获取。正如您在 Zomato 响应中看到的那样,没有 [] 所以没有 json 数组只有对象。

于 2016-05-06T06:47:40.830 回答