程序中已经得到一个string(也可以是byte[],需要进行编码),希望将它存入d:\1.txt 中
using System.IO;
string path = @" d:\1.txt " ; // 这是地址
string Text = " 这里是要写入的内容 " ;
FileStream fs = new FileStream(path, FileMode.Create);
StreamWriter sw = new StreamWriter(fs, Encoding.Unicode);
sw.Write(Text);
sw.Close();
fs.Close();