我想寫一個代碼,其中用戶輸入交貨詳細信息到文本框中並將文本添加到txt文件(記事本txt文件)。 這是我的嘗試,我得到一個額外的行「,,」爲什麼它不會將文本從文本框添加到文本文件?將文本附加到文本文件的問題?
private void FrmDelivery_Load(object sender, EventArgs e)
{
if (theDelivery != null)
{
txtCustomerName.Text = theDelivery.customerName;
txtCustomerAddress.Text = theDelivery.customerAddress;
txtArrivalTime.Text = theDelivery.arrivalTime;
using (StreamWriter writer = new StreamWriter("visits.txt", true)) //true shows that text would be appended to file
{
writer.WriteLine(theDelivery.customerName + ", " + theDelivery.customerAddress + ", " + theDelivery.arrivalTime);
}
}
}
theDelivery是從類創建的對象交付 – littledevils326
寫入文件的代碼看起來很好,你甚至會得到'',',''。所以使用調試器並找出爲什麼'theDelivery.customerName'等是空的。 – weston
-1。請對齊你的標題和示例代碼:你的標題詢問如何附加到文件,但你的代碼和問題的文本說,追加工作完美罰款,沒有價值。 –