C#如何向txt文件的开头第一行追加数据
1个回答
展开全部
string str;
str=this.textBox1.Text;
StreamWriter sw = new StreamWriter(Application.StartupPath +"\\txtwriter.txt", false);
sw.WriteLine(str);
sw.Close();//写入
string str;
StreamReader sr = new StreamReader(Application.StartupPath +"\\txtreader.txt", false);
str = sr.ReadLine().ToString();
sr.Close();
this.textBox1.Text = str;///读取
最简单的方法就是全读出来,得到string[]数组,
然后在写入的时候,先写入你要追加的内容,
然后遍历string[]把原来的写到后面。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询