JSONObject jsonCategory = jsonCategories.getJSONObject(i);
QQCategory qqc = new QQCategory();
qqc.setIndex(jsonCategory.getInt("index"));
qqc.setName(jsonCategory.getString("name"));
qqc.setSort(jsonCategory.getInt("sort"));
store.addCategory(qqc);
}
// 处理好友基本信息列表 flag/uin/categories
for (int i = 0; i < jsonFriends.length(); i++) {
QQBuddy buddy = new QQBuddy();
JSONObject jsonFriend = jsonFriends.getJSONObject(i);