在c#中如何将文字保存到记事本中?
2个回答
展开全部
自己写的 已测试
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类的介绍和使用
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类的介绍和使用
参考资料: http://msdn.microsoft.com/zh-cn/library/system.io.filestream(VS.80).aspx
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询