毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> net技术 >> 正文

C#如在txt文件的末尾续写

更新时间:2012-10-16:  来源:毕业论文

C#如在txt文件的末尾续写

using (FileStream fs = new FileStream(fileName, FileMode.Append, FileAccess.Write)) 
 using (StreamWriter sw = new StreamWriter(fs)) 
 { 
  sw.WriteLine(something); 
 } 
注意,FileMode.Append表示是追加。
有专用的方法:静态类File.AppendAllText方法。

//第二个参数为true表示追加,false表示覆盖
            StreamWriter sw = new StreamWriter("c:\test.txt", true);
            sw.Write("AAAAAAAAAAAAA");
            sw.WriteLine("BBBBBBBBBBBBBB");

using SYSTEM.IO; 
//C#追加文件
 StreamWriter sw=File.AppendText(Server.MapPath(".")+"\\myText.txt");
 sw.WriteLine("追逐理想");
 sw.WriteLine("kzlll");
 sw.WriteLine(".NET笔记");
 sw.Flush();
 sw.Close();

  StreamWriter sw=File.AppendText(System.Windows.Forms.Application.StartupPath+"\\lgcx.log");
  sw.WriteLine(SysLog.FProgramName+SysLog.FCreateName+SysLog.FTime+SysLog.FId+SysLog.FPath+SysLog.FDesc);
  //sw.WriteLine("kzlll1");
  //sw.WriteLine(".NET笔记1");
  sw.Flush();
  sw.Close();

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。