我有一个类似以下的json。 如何在android中找到JSON对象返回JSON数组或字符串。
{
"green_spots": [
......
],
"yellow_spots": "No yellow spot available",
"red_spots": "No red spot available"
}
JSON对象在存在值时重新生成数组,否则返回一个字符串,如“没有绿色/红色/黄色可用点”。我按照以下方式完成了。但还有其他办法吗? 因为警报字符串已更改,否则将无效。
JSONObject obj = new JSONObject(response);
String green = obj.getString("green_spots");
// Green spots
if ("No green spot available".equalsIgnoreCase(green)) {
Log.v("search by hour", "No green spot available");
} else {
JSONArray greenArray = obj.getJSONArray("green_spots");
....
}
答案 0 :(得分:10)
Object object = jsonObject.get("key");
if (object instanceof JSONObject) {
// It is json object
} else if (object instanceof JSONArray) {
// It is Json Array
} else {
// It is a String
}
答案 1 :(得分:1)
您可以使用instanceof
而不是getString只做obj.get,它将返回一个Object,检查对象是否为instanceof String或JSONArray
编辑:
这里有一些示例代码:
Object itineraries = planObject.get("itineraries");
if (itineraries instanceof JSONObject) {
JSONObject itinerary = (JSONObject) itineraries;
// right now, itinerary is your single item
}
else {
JSONArray array = (JSONArray) itineraries;
// do whatever you want with the array of itineraries
}
答案 2 :(得分:0)
JSONObject obj = new JSONObject(response);
JSONArray greenArray = obj.getJSONArray("green_spots");
if(greenArray!=null){
do your work with greenArray here
}else{
Log.v("search by hour", "No green spot available");
}
答案 3 :(得分:0)
简单地打印对象,如Log.e(“TAG”,“See>>”JsonObject.toString); 如果响应在{}块中,则它是对象,如果它在[]其数组
中答案 4 :(得分:0)
警告:此信息可能是多余的,但它可能是解决此问题的另一种方法。
您可以使用Jackson Object Mapper将JSON文件转换为HashMap。
public static HashMap<String, Object> jsonToHashMap(
String jsonString) {
Map<String, Object> map = new HashMap<String, Object>();
ObjectMapper mapper = new ObjectMapper();
try {
// convert JSON string to Map
map = mapper.readValue(jsonString,
new TypeReference<HashMap<String, Object>>() {
});
} catch (Exception e) {
e.printStackTrace();
}
return (HashMap<String, Object>) map;
}
这会自动创建适当对象的HashMap。然后,您可以使用instanceof或根据需要找出另一种方法来使用这些对象。