C#中怎么将字符串写入到一个文本文件中

2024-11-21 10:09:48
推荐回答(2个)
回答1:

哥们你也不给点悬赏分,还好没分我也愿意回答,呵呵!

首先添加引用
using System.IO;
using System.Diagnostics;

////////////////////////这里是覆盖你的已有的文本文件////////////////////
string str="你的字符串";
string filePath = "d:\\infor.txt";//这里是你的已知文件
FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.ReadWrite);
StreamWriter sw = new StreamWriter(fs);
fs.SetLength(0);//首先把文件清空了。
sw.Write(str);//写你的字符串。
sw.Close();

/////////////////////以下是运行这个文件/////////////////////////
Process p = new Process();
p.StartInfo.FileName =filePath;
p.Start();

回答2:

StreamWriter你可以用这个类来实现啊。
这个类有一个write()的函数的。直接将你需要保存的内容作为函数的参数传递过去就可以了。。
具体的方式你可以参考MSDN的。