C# 写文件
方法1:
using (System.IO.StreamWriter file = new System.IO.StreamWriter(@FileAddress, true))
{
foreach (string line in bufferStr1000)
{
//if (!line.Contains("second"))
//{
// file.Write(line);//直接追加文件末尾,不换行
file.WriteLine(line);// 直接追加文件末尾,换行
// }
}
file.Close();
}
只需要打开文件一次,当所有的都写完后关闭文件,防止被占用,其他程序无法获得读写权限
相比写一次保存关闭一次的方法,写文件占用时间短
方法2:
for (countJ = 0; countJ < (DataLength - 3); countJ = countJ + 4)
{ File.AppendAllText(FileAddress, bufferStr1000[countJ] + "\r\n" + bufferStr1000[countJ + 1] + "\r\n" + bufferStr1000[countJ + 2] + "\r\n" + bufferStr1000[countJ + 3] + "\r\n");
}
循环调用追加指令,这种方法每次都是要打开、写、关闭文件, 打开和关闭文件会占用大量时间,当数量大频率高的时候回导致时间不够
本文地址:https://blog.csdn.net/wsgy1/article/details/107159196
上一篇: 2020-07-12
下一篇: mysql中TCL事务控制语言