Package com.qq.open.common.json

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


   * @throws JSONException
   */
  private QqAddTopicResultBean jsonToBean(String jsonData) throws JSONException {
    QqAddTopicResultBean resultBean = new QqAddTopicResultBean();
   
    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();
      throw e;
    }
View Full Code Here


   */
  private WeiBoDelResultBean jsonToBean(String jsonData) throws JSONException {
   
    WeiBoDelResultBean resultBean = new WeiBoDelResultBean();
   
    JSONObject jsonObjRoot = new JSONObject(jsonData);
   
    // 接口返回错误的场合
    if (jsonObjRoot.getInt("ret") != 0) {
      // 设置错误标识为真
      resultBean.setErrorFlg(true);
      // 设置错误编号
      resultBean.setErrorCode(jsonObjRoot.get("errcode").toString());
      // 设置错误内容
      resultBean.setErrorMes(jsonObjRoot.getString("msg"));
    }
   
    return resultBean;
  }
View Full Code Here

   */
  private QqAddAlbumResultBean jsonToBean(String jsonData) throws JSONException {
    QqAddAlbumResultBean resultBean = new QqAddAlbumResultBean();
   
    // 接口返回的数据Josn
    JSONObject 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());
    }
   
    return resultBean;
  }
View Full Code Here

   */
  private QqAddShareResultBean jsonToBean(String jsonData) throws JSONException {
    QqAddShareResultBean resultBean = new QqAddShareResultBean();
   
    // 接口返回的数据json
    JSONObject jsonObjRoot = new JSONObject(jsonData);
   
    // 接口返回错误的场合
    if (jsonObjRoot.getInt("ret") != 0) {
      // 设置错误标识为真
      resultBean.setErrorFlg(true);
     
      // 设置错误编号
      resultBean.setErrorCode(jsonObjRoot.get("ret").toString());
     
      // 设置错误信息
      resultBean.setErrorMes(jsonObjRoot.getString("msg"));
    }
   
    return resultBean;
  }
View Full Code Here

  private QqAddBlogResultBean jsonToBean(String jsonData) throws JSONException {
    // 接口返回数据Bean
    QqAddBlogResultBean resultBean = new QqAddBlogResultBean();
   
    // 接口返回的数据json
    JSONObject jsonObjRoot = new JSONObject(jsonData);
   
    // 接口返回错误的场合
    if (jsonObjRoot.getInt("ret") != 0) {
      // 设置错误标识为真
      resultBean.setErrorFlg(true);
     
      // 设置错误编号
      resultBean.setErrorCode(jsonObjRoot.get("ret").toString());
     
      // 设置错误信息
      resultBean.setErrorMes(jsonObjRoot.getString("msg"));
    } else {
      resultBean.setUrl(jsonObjRoot.get("url").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.