在c#中如何将文字保存到记事本中?

2024-12-12 13:21:31
推荐回答(2个)
回答1:

自己写的 已测试
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;

namespace _2
{
class Program
{
static void Main(string[] args)
{
string str = "记事本";//写入的内容
string path = @"e:\1.txt";//文件路径
StreamWriter sw = new StreamWriter(path,false,Encoding.Unicode);
sw.Write(str);
sw.Close();
Console.ReadKey();
}
}
}
要引入using System.IO;
还有就是 StreamWrite的使用,文件操作 基本上是流的操作。StreamRead 、FileStream、file fileinfo 文件的读写要记得最后关闭文件,文件关闭时,文件会自动保存数据
附上微软MSDN关于fileStream类的介绍和使用

回答2:

io的操作 这个真的不多说