txt文档的读取与写入
public void Read(string path)
{
StreamReader sr = new StreamReader(path,Encoding.Default);
String line;
while ((line = sr.ReadLine()) != null)
{
Console.WriteLine(line.ToString());
}
}
public void Write(string path)
{
FileStream fs = new FileStream(path, FileMode.Create);
StreamWriter sw = new StreamWriter(fs);
//开始写入
sw.Write("Hello World!!!!");
//清空缓冲区
sw.Flush();
//关闭流
sw.Close();
fs.Close();
}
txt文档的读取与写入
public void Read(string path) { StreamReader sr = new StreamReader(path,Encoding.Default); ...
点击下载文档
上一篇:【8月17日笔记】财务-总账下一篇:【笔记】如何制作“直接SQL账表”
本文2024-09-16 17:24:40发表“云星空知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-k3cloud-15534.html
您需要登录后才可以发表评论, 登录登录 或者 注册
最新文档
热门文章