System.IndexOutOfRangeException: 索引超出了数组界限。

ArrayListalist=newArrayList();for(inti=0;i<listBox1.Items.Count;i++){stringmail;if(i<... ArrayList alist = new ArrayList();

for (int i = 0; i < listBox1.Items.Count; i++)
{
string mail;
if (i < listBox2.Items.Count)
{
mail = listBox1.Items[i].ToString() + "," + listBox2.Items[i].ToString();

}
else
{
mail = listBox1.Items[i].ToString() + "," + listBox2.Items[i % listBox2.Items.Count].ToString();
}

}

for (int j = 0; j < alist.Count; j++)
{
string senderStr = alist[j].ToString();
string[] str = senderStr.Split(new char[] { ',', ',', ',' });
string stmpStr = str[1];
string fromStr = str[2];
string pwdStr = str[3];
string toMail = str[0];
MailTo.mailunit mu = new MailTo.mailunit(stmpStr, fromStr, pwdStr, toMail, textBox7.Text, textBox8.Text, paths);
Thread mythread = new Thread(new ThreadStart(mu.SendMail2));
mythread.Start();
}

////多线程群发

for (int i = 0; i < listBox1.Items.Count; i++)
{
for (int j = 0; j < listBox2.Items.Count; j++)
{
string senderStr = listBox2.Items[j].ToString();
string[] str = senderStr.Split(new char[] { ',', ','});
string stmpStr = str[1];
string fromStr = str[2];
string pwdStr = str[3];
string toMail = str[0];
MailTo.mailunit mu = new MailTo.mailunit(stmpStr, fromStr, pwdStr, listBox1.Items[i].ToString(), textBox7.Text, textBox8.Text, paths);
Thread mythread = new Thread(new ThreadStart(mu.SendMail2));
mythread.Start();
}
}
展开
 我来答
百度网友586e433
2011-09-01 · TA获得超过3491个赞
知道小有建树答主
回答量:1221
采纳率:0%
帮助的人:1424万
展开全部
listBox1.Items[i].ToString() + "," + listBox2.Items[i].ToString();

这个用逗号分割的话,应该是长度为2的字符串数组

string fromStr = str[2];
string pwdStr = str[3];
这样的访问很容易出问题.只有listBox1的文本上恰好都有逗号时才行,否则就出你提出来的问题了
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式