我有一个程序,我可以在其中添加汽车后备箱销售列表,并指定它们是否用于慈善等。还有一个按钮可以生成用于慈善机构和非慈善机构的汽车后备箱销售列表到不同的文本文件。当我将慈善靴销售添加到应用程序并生成列表时,它会很好地写入文件。但是,当我再次加载应用程序并尝试生成文件时,它会生成一个空白列表。(我有在退出时保存应用程序数据并在启动时重新加载数据的功能)。
我不确定为什么会发生这种情况?
这是用于生成文件列表的按钮背后的代码:
List<CarBootSale> carbootsales = carBootSaleList.ReturnList();
carbootsales.Sort(delegate(CarBootSale bs1, CarBootSale bs2)
{
return Comparer<string>.Default.Compare(bs1.ID, bs2.ID);
});
textReportGenerator.GenerateCharityReport(carbootsales, AppData.CHARITY);
MessageBox.Show("All the Charity Car Boot Sales have been written to the report file: " + AppData.CHARITY);
下面是生成报告的 TextReportGenerator 类中的代码:
FileStream outFile;
StreamWriter writer;
//create the file and write to it
outFile = new FileStream(filePath, FileMode.Create, FileAccess.Write);
writer = new StreamWriter(outFile);
//For each object in the list, add it to the file
foreach (CarBootSale obj in CharityList)
{
if (obj.Charity == "true")
{
writer.WriteLine(obj.Display());
}
}
//close the file which has been opened
writer.Close();
outFile.Close();