2

我正在尝试从 facebook 获取所有数据

但我得到一个错误

指数数组的边界之外

代码:

 public void Comments(string cmtid)
    {
        var accessToken = "***********";
        var client = new FacebookClient(accessToken);

        clientfeed = client.Get(cmtid).ToString();

        JObject obj = JObject.Parse(clientfeed);

        JArray datas = (JArray)obj["data"];

        for (int i = 0; i < datas.Count; i++)
        {
            if (obj["data"][i]["message"] != null)
            {
                strPostComment = obj["data"][i]["message"].ToString();
                if (strPostComment.Contains("'"))
                {
                    strPostComment = strPostComment.Replace("'", "''");
                }
                strPostCommentId = obj["data"][i]["id"].ToString();
                strPostCommentNameId = obj["data"][i]["from"]["id"].ToString();
                strPostCommentName = obj["data"][i]["from"]["name"].ToString();
                splitCommentId = strPostCommentId.Split('_');
                strPostCommentdate = obj["data"][i]["created_time"].ToString();
                if (strPostCommentdate.Contains("T"))
                {
                    strPostCommentdate = strPostCommentdate.Replace("T", " ");
                }
                abccommenttime = strPostCommentdate.Substring(0, strPostCommentdate.ToString().Length - 5);

                if (strPostCommentName == "IIPL BANK")
                {
                    IIPLCustomer(strPostCommentNameId, abccommenttime);
                }
                else
                {
                    Customer(strPostCommentNameId);
                }

                if (datas.Count != 0)
                {
                    DbCommand = new OleDbCommand("select count(response_id) from mw_response where response_id = '" + splitCommentId[2] + "'", DbConnection);
                    OleDbDataReader DbReader = DbCommand.ExecuteReader();

                    while (DbReader.Read())
                    {
                        count = DbReader[0].ToString();
                        cnt = Convert.ToInt32(count);

                        if ((cnt == 0) && (strPostComment != ""))
                        {
                            DbCommand = new OleDbCommand("insert into mw_response(post_id,response,response_id, resp_date,community) values('" + splitCommentId[1] + "','" + strPostComment + "','" + splitCommentId[2] + "', to_date('" + abccommenttime + "', 'yyyy-mm-dd hh24:mi:ss'),'" + fb_community + "')", DbConnection);
                            DbCommand.ExecuteNonQuery();

                            //update productid and customerid
                            DbCommand = new OleDbCommand("update mw_response set prod_id = (select prod_id from mw_post where post_id='" + splitCommentId[1] + "'),customer_id = (select customer_id from mw_customer where customer_id = '" + strPostCommentNameId + "') where response_id = '" + splitCommentId[2] + "'", DbConnection);
                            DbCommand.ExecuteNonQuery();

                            if (strPostCommentName != "IIPL BANK")
                            {
                                //calling comment web service
                                createComment(splitCommentId[2]);
                            }
                        }
                    }
                    DbReader.Close();
                }
            }
        }
    }

这就是 Indes 终止的代码超出了数组的范围

  if (datas.Count != 0)
  {
     DbCommand = new OleDbCommand("select count(response_id) from mw_response where response_id = '" + splitCommentId[2] + "'", DbConnection);
     OleDbDataReader DbReader = DbCommand.ExecuteReader();
  }
4

2 回答 2

0

在下面一行

splitCommentId = strPostCommentId.Split('_');

检查 splitCommentId 的长度是多少。它将是 2。这意味着在下面的行中

DbCommand = new OleDbCommand("select count(response_id) from mw_response where response_id = '" + splitCommentId[2] + "'", DbConnection);

splitCommentId[2]将不存在。因此错误。如果要访问第二个元素,请这样做

DbCommand = new OleDbCommand("select count(response_id) from mw_response where response_id = '" + splitCommentId[1] + "'", DbConnection);

您的代码createComment(splitCommentId[2]); 也会抛出异常。

于 2013-08-14T05:47:30.713 回答
0

您正在尝试访问splitCommentId中索引2处的数据,而不检查该处的数据是否实际存在于此处:

DbCommand = new OleDbCommand("select count(response_id) from mw_response where response_id = '" + splitCommentId[2] + "'", DbConnection);

你可以这样做

if (datas.Count != 0 && splitCommentId.length >= 3)
{
     DbCommand = new OleDbCommand("select count(response_id) from mw_response where response_id = '" + splitCommentId[2] + "'", DbConnection);
     OleDbDataReader DbReader = DbCommand.ExecuteReader();
}
于 2013-08-14T05:41:55.583 回答