首页 > 代码库 > c# 文件的读写
c# 文件的读写
读文件:
1 StreamReader sr = new StreamReader(FileName, Encoding.Default); 2 string content = ""; 3 content = sr.ReadLine(); 4 5 while (content != null) 6 { 7 //操作逻辑 8 .... 9 ....10 content = sr.ReadLine();11 }12 sr.Close();
写文件:
1 string path = @"路径\list_key.txt"; 2 3 FileStream fs1 = new FileStream(path, FileMode.Create, FileAccess.Write); 4 //创建写入文件 5 StreamWriter sw1 = new StreamWriter(fs1, Encoding.Default); 6 sw1.AutoFlush = true; 7 8 // for (int i = 0; i < strFirstList.Count; i++) 9 // {10 // sw1.Write(strFirstList[i]);11 // sw1.Write(" ");12 // sw1.WriteLine(strSecList[i]);13 // }14 15 16 fs1.Close();
c# 文件的读写
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。