我有一个已保存的listBox。当有人退出程序时,它会保存listBox中的所有名称,当它们输入时会将它们全部添加回来。
问题是,当表单打开并且listBox2为空时,它很好并且完成其功能。但是当程序在Form_Load上自动将文本框中的项加载到listBox2中时,单击listBox2时出现以下错误。
类型'System.ArgumentOutOfRangeException'的未处理异常 发生在mscorlib.dll
其他信息:指数超出范围。必须是非负面的 并且小于集合的大小。
在字符串fullFileName = selectedFiles[listBox2.SelectedIndex];
private void materialFlatButton3_Click_1(object sender, EventArgs e)
{
OpenFileDialog OpenFileDialog1 = new OpenFileDialog();
OpenFileDialog1.Multiselect = true;
OpenFileDialog1.Filter = "DLL Files|*.dll";
OpenFileDialog1.Title = "Select a Dll File";
if (OpenFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
// put the selected result in the global variable
fullFileName = new List<String>(OpenFileDialog1.FileNames);
foreach (string s in OpenFileDialog1.FileNames)
{
listBox2.Items.Add(Path.GetFileName(s));
selectedFiles.Add(s);
}
}
}
List<string> selectedFiles = new List<string>();
private void listBox2_SelectedIndexChanged(object sender, EventArgs e)
{
if (listBox2.SelectedIndex >= 0)
{
string fullFileName = selectedFiles[listBox2.SelectedIndex];
textBox4.Text = fullFileName;
}
else
{
}
string path = @"C:\Save.txt";
private void Form1_Load(object sender, EventArgs e)
{
if (!File.Exists(path))
{
FileStream fs = File.Create(path);
fs.Close();
}
else
{
StreamReader sr = new StreamReader(path);
string line = string.Empty;
try
{
//Read the first line of text
line = sr.ReadLine();
//Continue to read until you reach end of file
while (line != null)
{
this.listBox2.Items.Add(line);
//Read the next line
line = sr.ReadLine();
}
//close the file
sr.Close();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message.ToString());
}
finally
{
//close the file
sr.Close();
}
textBox3.Visible = false;
string text = File.ReadAllText(path, Encoding.UTF8);
}
}
}
答案 0 :(得分:1)
你的代码有一个很大的缺陷,你有一个ListBox
的文件名,一个List<string>
的路径,但你只保存ListBox
上的数据,所以当您恢复ListBox
List<string>
的内容仍为空,这就是为什么它会在SelectedIndexChanged
上为您提供例外。
您还需要以某种方式存储路径,然后在加载时恢复它。最简单的解决方案是交错文件上的数据,保存列表框中的文件名,列表中的路径等等,直到您保存所有内容,然后当您回读它时,您将恢复列表框中的一行。名称和带有路径的列表的行。
编辑:更好,而不是保存ListBox
中的内容,而不是保存List<string>
中的内容,您可以这样做:
line = sr.ReadLine();
//Continue to read until you reach end of file
while (line != null)
{
this.listBox2.Items.Add(Path.GetFileName(line));
selectedFiles.Add(line);
//Read the next line
line = sr.ReadLine();
}
//close the file
sr.Close();