我在写入txt文件时遇到问题。如果我运行我的Save方法,它只会生成空白的txt文件。我从txt文件中填写此列表,它工作正常,所以我确定它不是空的(我可以在日历中看到我的约会)。有我的方法。
修改
好的,我知道问题出在哪里。 Load中的_appointments列表与Save中的_appointments列表相同。我不知道为什么。我没有任何其他名单。它是一样的,但它不是:/
public bool Load()
{
DateTime start = new DateTime(2000,01,01);
CultureInfo enUS = new CultureInfo("en-US");
int length = 0;
string screenDiscription = "";
bool occursOnDate = false;
string line;
int i = 1;
StreamReader sr = new StreamReader("appointments.txt");
if (!File.Exists("appointments.txt"))
{
return false;
}
while ((line = sr.ReadLine()) != null)
{
if (i % 4 == 1)
{
start = DateTime.ParseExact(line, "ddMMyyyy HHmm", enUS);
}
if (i % 4 == 2)
{
length = int.Parse(line);
}
if (i % 4 == 3)
{
screenDiscription = line;
}
if (i % 4 == 0)
{
Appointment appointment = new Appointment(start, length, screenDiscription, occursOnDate);
_appointments.Add(appointment);
}
i++;
}
sr.Close();
return true;
}
public bool Save()
{
StreamWriter sw = new StreamWriter("appointments.txt");
if (File.Exists("appointments.txt"))
{
foreach(IAppointment item in _appointments)
{
sw.WriteLine(item.Start);
sw.WriteLine(item.Length);
sw.WriteLine(item.DisplayableDescription);
sw.WriteLine(" ");
}
sw.Close();
return true;
}
else
{
File.Create("appointments.txt");
foreach (IAppointment item in _appointments)
{
sw.WriteLine(item.Start);
sw.WriteLine(item.Length);
sw.WriteLine(item.DisplayableDescription);
sw.WriteLine(" ");
}
sw.Close();
return true;
}
}
答案 0 :(得分:0)
我已经重构了您的Save
方法,但我无法测试它,因为我没有IAppointment
和Appointment
:
public void Save()
{
var builder = new StringBuilder()
foreach (IAppointment item in _appointments)
{
builder.AppendLine(item.Start);
builder.AppendLine(item.Length);
builder.AppendLine(item.DisplayableDescription);
builder.AppendLine(" ");
}
File.WriteAllText("appointments.txt", builder.ToString());
}
请注意以下几点:我认为您的bool
返回类型是多余的,因为该方法始终在所有代码路径上返回true
;因此我把它改为void
。另外,我使用StringBuilder
来构造文件内容,然后使用内置的File.WriteAllText
方法来抽象出你通常要打开流的IO操作,流作家,关闭等
我不确定这是否会解决您的问题,因为正如我所述,我无法测试它,我不确定您的代码到底出了什么问题,但至少它可能是更清洁,更容易使用。