Package com.qq.open.common.json

Examples of com.qq.open.common.json.JSONObject


   */
  private QqAddAlbumResultBean jsonToBean(String jsonData) throws JSONException {
    QqAddAlbumResultBean resultBean = new QqAddAlbumResultBean();
   
    // 接口返回的数据Josn
    JSONObject jsonObjRoot;
    try {
      jsonObjRoot = new JSONObject(jsonData);
   
      // 接口返回错误的场合
      if (jsonObjRoot.getInt("ret") != 0) {
        // 设置错误标识为真
        resultBean.setErrorFlg(true);
       
        // 设置错误编号
        resultBean.setErrorCode(jsonObjRoot.get("ret").toString());
       
        // 设置错误信息
        resultBean.setErrorMes(jsonObjRoot.getString("msg"));
      } else {
        // 相册ID
        resultBean.setAlbumId(jsonObjRoot.getString("albumid"));
       
        // 相册创建时间
        resultBean.setCreateTime(oqu.timeStampToDate(jsonObjRoot.get("createtime").toString()));
       
        // 相册描述
        resultBean.setDesc(jsonObjRoot.getString("desc"));
       
        // 相册名称
        resultBean.setName(jsonObjRoot.getString("name"));
       
        // 相册权限
        resultBean.setPriv(jsonObjRoot.get("priv").toString());
      }
    } catch (JSONException e) {
      e.printStackTrace();
      // 日志
      log.error("addAlbum 异常,json数据是:" + jsonData);
View Full Code Here


   */
  private WeiBoDelIdolResultBean jsonToBean(String jsonData) throws JSONException {
   
    WeiBoDelIdolResultBean resultBean = new WeiBoDelIdolResultBean();
   
    JSONObject jsonObjRoot;
    try {
      jsonObjRoot = new JSONObject(jsonData);
     
      // 接口返回错误的场合
      if (jsonObjRoot.getInt("ret") != 0) {
        // 设置错误标识为真
        resultBean.setErrorFlg(true);
        // 设置错误编号
        resultBean.setErrorCode(jsonObjRoot.get("errcode").toString());
        // 设置错误内容
        resultBean.setErrorMes(jsonObjRoot.getString("msg"));
      }
    } catch (JSONException e) {
      e.printStackTrace();
      // 日志
      log.error("delIdol 异常,json数据是:" + jsonData);
View Full Code Here

   */
  private WeiBoAddIdolResultBean jsonToBean(String jsonData) throws JSONException {
   
    WeiBoAddIdolResultBean resultBean = new WeiBoAddIdolResultBean();
   
    JSONObject jsonObjRoot;
    try {
      jsonObjRoot = new JSONObject(jsonData);
     
      // 接口返回错误的场合
      if (jsonObjRoot.getInt("ret") != 0) {
        // 设置错误标识为真
        resultBean.setErrorFlg(true);
        // 设置错误编号
        resultBean.setErrorCode(jsonObjRoot.get("errcode").toString());
        // 设置错误内容
        resultBean.setErrorMes(jsonObjRoot.getString("msg"));
      }
    } catch (JSONException e) {
      e.printStackTrace();
      // 日志
      log.error("addIdol 异常,json数据是:" + jsonData);
View Full Code Here

   */
  private QqGetUserInfoResultBean jsonToBean(String jsonData) {
    QqGetUserInfoResultBean resultBean = new QqGetUserInfoResultBean();
   
    // 接口返回的数据json
    JSONObject jsonObjRoot;
    try {
      jsonObjRoot = new JSONObject(jsonData);
     
      // 接口返回错误的场合
      if (jsonObjRoot.getInt("ret") != 0) {
        // 设置错误标识为真
        resultBean.setErrorFlg(true);
       
        // 设置错误编号
        resultBean.setErrorCode(jsonObjRoot.get("ret").toString());
       
        // 设置错误信息
        resultBean.setErrorMes(jsonObjRoot.getString("msg"));
       
        // 日志
        log.error("获取用户信息出错。错误编号:" + jsonObjRoot.get("ret").toString());
      } else {
        // 昵称
        resultBean.setNickName(jsonObjRoot.getString("nickname"));
       
        // 头像URL
        resultBean.setFigureUrl(jsonObjRoot.getString("figureurl"));
       
        // 头像URL
        resultBean.setFigureUrl1(jsonObjRoot.getString("figureurl_1"));
       
        // 头像URL
        resultBean.setFigureUrl2(jsonObjRoot.getString("figureurl_2"));
       
        // 性别
        resultBean.setGender(jsonObjRoot.getString("gender"));
       
        // 是否为黄钻
        resultBean.setIsVip(jsonObjRoot.getString("vip"));
       
        // 黄钻等级
        resultBean.setLevel(jsonObjRoot.getString("level"));
      }
    } catch (JSONException e) {
      e.printStackTrace();
      // 日志
      log.error("获取用户信息出错。接口返回数据:" + jsonData);
View Full Code Here

   */
  private WeiBoGetFansListResultBean jsonToBean(String jsonData) throws JSONException {
   
    WeiBoGetFansListResultBean resultBean = new WeiBoGetFansListResultBean();
   
    JSONObject jsonObjRoot = new JSONObject(jsonData);
   
    // 接口返回错误的场合
    if (jsonObjRoot.getInt("ret") != 0) {
      // 设置错误标识为真
      resultBean.setErrorFlg(true);
      // 设置错误编号
      resultBean.setErrorCode(jsonObjRoot.get("errcode").toString());
      // 设置错误内容
      resultBean.setErrorMes(jsonObjRoot.getString("msg"));
    } else {
      // 表示是否还有听众信息可以拉取 0:还有听众信息可以拉取 1:已拉取完
     
      JSONObject jsonObjData = new JSONObject(jsonObjRoot.get("data").toString());
      resultBean.setHasNext(jsonObjData.get("hasnext").toString());
     
      // 服务器时间戳
      resultBean.setTimeStamp(oqu.timeStampToDate(jsonObjData.get("timestamp").toString()));
     
      // 听众详细信息
      JSONArray infoJsonObj = jsonObjData.getJSONArray("info");
     
      // 听众详细信息
      List<WeiBoFansInfoResultBean> infoList = new ArrayList<WeiBoFansInfoResultBean>();
     
      // 循环把所有听众信息保存起来
      for (int i = 0; i < infoJsonObj.length(); i++) {
       
        WeiBoFansInfoResultBean infoBean = new WeiBoFansInfoResultBean();
       
        // 单个的听众信息
        JSONObject jsonObjTemp = new JSONObject(infoJsonObj.get(i).toString());
       
        // 听众的账户名
        infoBean.setName(jsonObjTemp.getString("name"));
       
        // 听众的唯一ID
        infoBean.setOpenId(jsonObjTemp.getString("openid"));
       
        // 听众的昵称
        infoBean.setNick(jsonObjTemp.getString("nick"));
       
        // 听众头像url
        infoBean.setHead(jsonObjTemp.getString("head"));
       
        // 听众性别
        // infoBean.setSex(jsonObjTemp.get("sex").toString());
       
        // 听众所在地
        infoBean.setLocation(jsonObjTemp.getString("location"));
       
        // 标签
        JSONArray tweetArray = jsonObjTemp.getJSONArray("tweet");
        JSONObject jsonObjTempTweet = new JSONObject(tweetArray.get(0).toString());
       
        // 听众最近发表的一条微博内容
        infoBean.setTweetText(jsonObjTempTweet.getString("text"));
       
        // 听众最近发表的一条微博来源
        infoBean.setTweetFrom(jsonObjTempTweet.getString("from"));
       
        // 微博ID,用来唯一标识一条微博
        infoBean.setTweetId(jsonObjTempTweet.get("id").toString());
       
        // 发表微博的时间
        infoBean.setTweetTime(oqu.timeStampToDate(jsonObjTempTweet.get("timestamp").toString()));
       
        // 听众数
        infoBean.setFansnum(jsonObjTemp.get("fansnum").toString());
       
        // 收听的人数
        infoBean.setIdolnum(jsonObjTemp.get("idolnum").toString());
       
        // 是否为用户收听的人 0:不是; 1:是
        infoBean.setIsidol(jsonObjTemp.get("isidol").toString());
       
        // 听众是否为微博认证用户 0:不是; 1:是
        infoBean.setIsvip(jsonObjTemp.get("isvip").toString());
       
        // 听众标签
        if (!"null".equals(jsonObjTemp.get("tag").toString())) {
          List<WeiBoTagResultBean> tags = new ArrayList<WeiBoTagResultBean>();
         
          // 听众标签
          JSONArray tagsArray = jsonObjTemp.getJSONArray("tag");
         
          for (int j = 0; j < tagsArray.length(); j++) {
            WeiBoTagResultBean tagsBean = new WeiBoTagResultBean();
            // 听众标签
            JSONObject tagsObject = new JSONObject(tagsArray.get(j).toString());
           
            // 标签ID
            tagsBean.setId(tagsObject.getString("id"));
           
            // 标签名
            tagsBean.setName(tagsObject.getString("name"));
           
            tags.add(tagsBean);
          }
         
          // 设置用户标签
View Full Code Here

  private WeiBoGetIdoListResultBean jsonToBean(String jsonData) throws JSONException {
   
   
    WeiBoGetIdoListResultBean resultBean = new WeiBoGetIdoListResultBean();
   
    JSONObject jsonObjRoot = new JSONObject(jsonData);
   
    // 接口返回错误的场合
    if (jsonObjRoot.getInt("ret") != 0) {
      // 设置错误标识为真
      resultBean.setErrorFlg(true);
      // 设置错误编号
      resultBean.setErrorCode(jsonObjRoot.get("errcode").toString());
      // 设置错误内容
      resultBean.setErrorMes(jsonObjRoot.getString("msg"));
    } else {
      // 表示是否还有听众信息可以拉取 0:还有听众信息可以拉取 1:已拉取完
     
      JSONObject jsonObjData = new JSONObject(jsonObjRoot.get("data").toString());
      resultBean.setHasNext(jsonObjData.get("hasnext").toString());
     
      // 服务器时间戳
      resultBean.setTimeStamp(oqu.timeStampToDate(jsonObjData.get("timestamp").toString()));
     
      // 听众详细信息
      JSONArray infoJsonObj = jsonObjData.getJSONArray("info");
     
      // 听众详细信息
      List<WeiBoIdoInfoBean> infoList = new ArrayList<WeiBoIdoInfoBean>();
     
      // 循环把所有听众信息保存起来
      for (int i = 0; i < infoJsonObj.length(); i++) {
       
        WeiBoIdoInfoBean infoBean = new WeiBoIdoInfoBean();
       
        // 单个的听众信息
        JSONObject jsonObjTemp = new JSONObject(infoJsonObj.get(i).toString());
       
        // 听众的账户名
        infoBean.setName(jsonObjTemp.getString("name"));
       
        // 听众的唯一ID
        infoBean.setOpenId(jsonObjTemp.getString("openid"));
       
        // 听众的昵称
        infoBean.setNick(jsonObjTemp.getString("nick"));
       
        // 听众头像url
        infoBean.setHead(jsonObjTemp.getString("head"));
       
        // 听众性别
        // infoBean.setSex(jsonObjTemp.get("sex").toString());
       
        // 听众所在地
        infoBean.setLocation(jsonObjTemp.getString("location"));
       
        // 标签
        JSONArray tweetArray = jsonObjTemp.getJSONArray("tweet");
        JSONObject jsonObjTempTweet = new JSONObject(tweetArray.get(0).toString());
       
        // 听众最近发表的一条微博内容
        infoBean.setTweetText(jsonObjTempTweet.getString("text"));
       
        // 听众最近发表的一条微博来源
        infoBean.setTweetFrom(jsonObjTempTweet.getString("from"));
       
        // 微博ID,用来唯一标识一条微博
        infoBean.setTweetId(jsonObjTempTweet.get("id").toString());
       
        // 发表微博的时间
        infoBean.setTweetTime(oqu.timeStampToDate(jsonObjTempTweet.get("timestamp").toString()));
       
        // 听众数
        infoBean.setFansnum(jsonObjTemp.get("fansnum").toString());
       
        // 收听的人数
        infoBean.setIdolnum(jsonObjTemp.get("idolnum").toString());
       
        // 是否为用户收听的人 0:不是; 1:是
        infoBean.setIsidol(jsonObjTemp.get("isidol").toString());
       
        // 听众是否为微博认证用户 0:不是; 1:是
        infoBean.setIsvip(jsonObjTemp.get("isvip").toString());
       
        // 听众标签
        if (!"null".equals(jsonObjTemp.get("tag").toString())) {
          List<WeiBoTagResultBean> tags = new ArrayList<WeiBoTagResultBean>();
         
          // 听众标签
          JSONArray tagsArray = jsonObjTemp.getJSONArray("tag");
         
          for (int j = 0; j < tagsArray.length(); j++) {
            WeiBoTagResultBean tagsBean = new WeiBoTagResultBean();
            // 听众标签
            JSONObject tagsObject = new JSONObject(tagsArray.get(j).toString());
           
            // 标签ID
            tagsBean.setId(tagsObject.getString("id"));
           
            // 标签名
            tagsBean.setName(tagsObject.getString("name"));
           
            tags.add(tagsBean);
          }
         
          // 设置用户标签
View Full Code Here

  private WeiBoGetInfoResultBean jsonToBean(String jsonData) throws JSONException {
   
    WeiBoGetInfoResultBean resultBean = new WeiBoGetInfoResultBean();
   
    // 格式化json数据
    JSONObject jsonObjRoot = new JSONObject(jsonData);
   
    // 接口返回出错的场合
    if (jsonObjRoot.getInt("ret") != 0) {
     
      // 设置错误标识
      resultBean.setErrorFlg(true);
     
      // 错误编号
      resultBean.setErrorCode(jsonObjRoot.get("errcode").toString());
     
      // 错误信息
      resultBean.setErrorMes(jsonObjRoot.getString("msg"));
    } else {
     
      // 他用户详细信息
      JSONObject jsonDataObj = new JSONObject(jsonObjRoot.getJSONObject("data").toString());
     
      // 其他用户的帐号名
      resultBean.setName(jsonDataObj.getString("name"));
     
      // 其他用户的唯一ID
      resultBean.setOpenId(jsonDataObj.getString("openid"));
     
      // 其他用户昵称
      resultBean.setNick(jsonDataObj.getString("nick"));
     
      // 其他用户头像url
      resultBean.setHead(jsonDataObj.getString("head"));
     
      // 其他用户所在地
      resultBean.setLocation(jsonDataObj.getString("location"));
     
      // 其他用户是否为微博认证用户
      resultBean.setIsvip(jsonDataObj.get("isvip").toString());
     
      // 其他用户是否为企业机构
      resultBean.setIsent(jsonDataObj.get("isent").toString());
     
      // 其他用户的个人介绍
      resultBean.setIntroduction(jsonDataObj.getString("introduction"));
     
      // 认证信息
      resultBean.setVerifyInfo(jsonDataObj.getString("verifyinfo"));
     
      // 其他用户出生年
      resultBean.setBirthYear(jsonDataObj.get("birth_year").toString());
     
      // 其他用户出生月份
      resultBean.setBirthMonth(jsonDataObj.get("birth_month").toString());
     
      // 其他用户出生日
      resultBean.setBirthDay(jsonDataObj.get("birth_day").toString());
     
      // 其他用户所在的国家代码
      resultBean.setCountryCode(jsonDataObj.get("country_code").toString());
     
      // 其他用户所在的省代码
      resultBean.setProvinceCode(jsonDataObj.get("province_code").toString());
     
      // 其他用户所在的城市代码
      resultBean.setCityCode(jsonDataObj.get("city_code").toString());
     
      // 其他用户性别
      resultBean.setSex(jsonDataObj.get("sex").toString());
     
      // 其他用户听众数
      resultBean.setFansNum(jsonDataObj.get("fansnum").toString());
     
      // 其他用户收听的人数
      resultBean.setIdolNum(jsonDataObj.get("idolnum").toString());
     
      // 其他用户发表的微博数
      resultBean.setTweetNum(jsonDataObj.get("tweetnum").toString());
     
      // 用户注册的邮箱
      resultBean.setEmail(jsonDataObj.getString("email"));
     
      if (!"null".equals(jsonDataObj.get("tag").toString())) {
        // 听众标签集合
        List<WeiBoTagResultBean> tagsList = new ArrayList<WeiBoTagResultBean>();
       
        // 听众标签
        JSONArray tagsArray = jsonDataObj.getJSONArray("tag");
       
        for (int j = 0; j < tagsArray.length(); j++) {
          WeiBoTagResultBean tagsBean = new WeiBoTagResultBean();
          // 听众标签
          JSONObject tagsObject = new JSONObject(tagsArray.get(j).toString());
         
          // 标签ID
          tagsBean.setId(tagsObject.getString("id"));
         
          // 标签名
          tagsBean.setName(tagsObject.getString("name"));
         
          tagsList.add(tagsBean);
        }
        resultBean.setTagsList(tagsList);
      }
     
      if (!"null".equals(jsonDataObj.get("edu").toString())) {
       
        List<WeiBoEduResultBean> edusList = new ArrayList<WeiBoEduResultBean>();
       
        // 听众标签
        JSONArray edusArray = jsonDataObj.getJSONArray("edu");
       
        for (int j = 0; j < edusArray.length(); j++) {
          WeiBoEduResultBean edusBean = new WeiBoEduResultBean();
          // 听众标签
          JSONObject edusObject = new JSONObject(edusArray.get(j).toString());
         
          // 教育信息记录ID
          edusBean.setId(edusObject.get("id").toString());
         
          // 入学年
          edusBean.setYear(edusObject.get("year").toString());
         
          // 学校ID
          edusBean.setSchoolId(edusObject.get("schoolid").toString());
         
          // 院系ID
          edusBean.setDepartmentId(edusObject.get("departmentid").toString());
         
          // 学历级别
          edusBean.setLevel(edusObject.get("level").toString());
         
          edusList.add(edusBean);
        }
        resultBean.setEdusList(edusList);
      }
View Full Code Here

   
    // 请求QQ接口,回去返回数据
    String interfaceData = oqu.doGet(this.getOpenIdUrl(accessToken));
   
    // 接口返回的数据json
    JSONObject jsonObjRoot;
    try {
      // 去掉多余的字符串
      String jsonStr = interfaceData.substring(interfaceData.indexOf("{"),interfaceData.indexOf("}") + 1);
     
      // 获取json对象
      jsonObjRoot = new JSONObject(jsonStr);
     
      // 获取OpenId
      openId = jsonObjRoot.get("openid").toString();
     
      // 日志
      log.info("openid:" + openId);
    } catch (JSONException e) {
      e.printStackTrace();
View Full Code Here

   
    String str = "callback( {\"client_id\":\"YOUR_APPID\",\"openid\":\"YOUR_OPENID\"})";
   
    String temp = str.substring(str.indexOf("{"),str.indexOf("}") + 1);
    // 接口返回的数据json
    JSONObject jsonObjRoot = new JSONObject(temp);
   
    System.out.println(jsonObjRoot.get("openid"));
   
  }
View Full Code Here

   */
  private WeiBoAddResultBean jsonToResultBean(String jsonData) throws JSONException {
 
    WeiBoAddResultBean resultBean = new WeiBoAddResultBean();
   
    JSONObject jsonObj = new JSONObject(jsonData);
   
    // 添加微博失败的场合
    if (jsonObj.getInt("ret") != 0) {
      // 错误标识
      resultBean.setErrorFlg(true);
     
      // 错误编号
      resultBean.setErrorCode(jsonObj.get("errcode").toString());
     
      // 错误信息
      resultBean.setErrorMes(jsonObj.getString("msg"));
     
    } else {
      // 获取微博数据
      JSONObject jsonDataObj = new JSONObject(jsonObj.getJSONObject("data").toString());
     
      // 获取微博ID
      resultBean.setAddWeiBoId(jsonDataObj.get("id").toString());
     
      // 获取微博发布时间
      resultBean.setAddWeiBoDate(oqu.timeStampToDate(jsonDataObj.get("time").toString()));
    }
   
    return resultBean;
  }
View Full Code Here

TOP

Related Classes of com.qq.open.common.json.JSONObject

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.