1.需解析JSON數據:
json
2.需求:取出gender_type值;
3.
import org.json.JSONObject;
public void dealJson(String text){
JSONObject jsonObject = new org.json.JSONObject(text); //將String類型的數據轉換爲JSONObject對象
JSONObject dataJson = jsonObject.getJSONObject("data"); //使用getJSONObject方法取出data的JSONObject對象
JSONObject resultJson = dataJson.getJSONObject("result");
JSONObject genderJson = resultJson.getJSONObject("gender");
System.out.println("genderJson==>"genderJson);
String gender = genderJson.getString("gender_type"); //取出gender_type的值
System.out.println("gender==>"+gender);
}
//方法不少,這裏僅提供其中一種學習
更多Java學習資料可關注:gzitcastspa