* @param strJSON JSON格式字符串
*/
public UserJSON(String strJSON)
{
try {
JSONObject json = new JSONObject(strJSON);
id = json.getString("id");
screen_name = json.getString("screen_name");
gender = json.getString("gender");
description = json.getString("description");
profile_image_url = json.getString("profile_image_url");
location = json.getString("location");
followers_count = json.getInt("followers_count");
friends_count = json.getInt("friends_count");
favourites_count = json.getInt("favourites_count");
statuses_count = json.getInt("statuses_count");
following = json.getBoolean("following");
} catch (JSONException e) {
//e.printStackTrace();
log.info("users.show.JSON " + e.getMessage());
}
}