JSONObject jsonObject = new JSONObject(extraStr);
if (null != jsonObject) {
if (jsonObject.has("status") && !TextUtils.isEmpty(jsonObject.getString("status"))){
status = Integer.valueOf(jsonObject.getString("status"));
}
if(jsonObject.has("number") && !TextUtils.isEmpty(jsonObject.getString("number"))){
number = jsonObject.getString("number");
}
if(jsonObject.has("content") && !TextUtils.isEmpty(jsonObject.getString("content"))){
content = jsonObject.getString("content");
}
}
Java取出json字符串中某一key的值
最新推荐文章于 2024-08-28 11:37:10 发布