private void PopulateListByJSONArray() {

    try {
      String newtime = Utility.getdate();
      String accesskey = Utility.MD5_Hash(Constants.email + newtime + "moko");
      Constants.ACCESS_KEY = accesskey;
      Constants.proc_date = newtime;
      if (CheckInternet.checkConn(CardOrder.this)) {
        response = Utility.getAllList();
      } else {
        response = null;
      }
      if (response != null) {

        for (int i = 0; i < response.length(); i++) {
          WatchListAllEntity watchListAllEntity = new WatchListAllEntity();
          // String s=(String) response.getJSONObject(i).get("card");
          JSONObject jo = response.getJSONObject(i).getJSONObject("card");

          watchListAllEntity.set_original_image_url(jo.getString("original_image_url"));

          watchListAllEntity.setBuilding(jo.getString("building"));
          watchListAllEntity.setAddress1(jo.getString("address1"));
          watchListAllEntity.setZip(jo.getString("zip"));
          watchListAllEntity.setSei(jo.getString("sei"));

          watchListAllEntity.set_mail_address(jo.getString("email"));

          watchListAllEntity.set_file_path(jo.getString("file_path"));
          watchListAllEntity.set_created_at(jo.getString("created_at"));
          watchListAllEntity.setAddress2(jo.getString("address2"));
          watchListAllEntity.set_company_name(jo.getString("company_name"));
          watchListAllEntity.set_company_kana(jo.getString("company_kana"));
          watchListAllEntity.setAddress3(jo.getString("address3"));
          watchListAllEntity.set_updated_at(jo.getString("updated_at"));
          watchListAllEntity.set_proc_card_id(jo.getString("proc_card_id"));
          watchListAllEntity.setUrl(jo.getString("url"));
          watchListAllEntity.set_status_ja(jo.getString("status_ja"));

          watchListAllEntity.setSeimei(jo.getString("seimei"));
          watchListAllEntity.setMemo(jo.getString("memo"));
          watchListAllEntity.setKeitai(jo.getString("keitai"));
          watchListAllEntity.setAddress4(jo.getString("address4"));
          // watchListAllEntity.setYakusyoku(jo.getString("yakusyoku"));
          watchListAllEntity.set_thumbnail_image_url1(jo.getString("thumbnail_image_url1"));
          Drawable image =
              Utility.ImageOperations(
                  jo.getString("thumbnail_image_url1").replace(" ", "%20"), "image.jpg");

          watchListAllEntity.setImage(image);
          watchListAllEntity.set_thumbnail_image_url2(jo.getString("thumbnail_image_url2"));
          watchListAllEntity.set_thumbnail_image_url3(jo.getString("thumbnail_image_url3"));
          watchListAllEntity.set_thumbnail_image_url4(jo.getString("thumbnail_image_url4"));
          Log.e(
              "Url1,Url2,Url3,Url4",
              jo.getString("thumbnail_image_url1")
                  + ","
                  + jo.getString("thumbnail_image_url2")
                  + ","
                  + jo.getString("thumbnail_image_url3")
                  + ","
                  + jo.getString("thumbnail_image_url4")
                  + "");
          watchListAllEntity.setTel(jo.getString("tel"));

          watchListAllEntity.set_mei_kana(jo.getString("mei_kana"));
          watchListAllEntity.setId(jo.getString("id"));
          watchListAllEntity.set_file_name(jo.getString("file_name"));
          watchListAllEntity.set_user_id(jo.getString("user_id"));
          watchListAllEntity.setMei(jo.getString("mei"));
          watchListAllEntity.set_file_size(jo.getString("file_size"));
          /*
           * watchListAllEntity.set_file_extension(jo
           * .getString("file_extension"));
           */
          watchListAllEntity.setFax(jo.getString("fax"));
          watchListAllEntity.set_sei_kana(jo.getString("sei_kana"));
          // watchListAllEntity.setBusyo(jo.getString("busyo"));
          watchListAllEntity.setStatus(jo.getString("status"));

          listrow.add(watchListAllEntity);
        }
      }

    } catch (JSONException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    }

    runOnUiThread(returnRes);
  }