码迷,mamicode.com
首页 > Windows程序 > 详细

C# 创建text文本并写入数据

时间:2014-11-18 23:21:09      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:http   ar   os   sp   文件   数据   on   bs   html   

/// <summary>

/// 创建TXT文本并往里面写入数据

/// </summary>

/// <param name="FileName">要创建的文件名,不要后缀名</param>

protected void WriteTxt(string FileName)  

{

  Encoding code = Encoding.GetEncoding("gb2312");  //编码格式   

      string htmlfilename = HttpContext.Current.Server.MapPath("/txt/" + FileName + ".txt");    //文件保存路径  

       string str = "";     //写入内容   

       StreamWriter sw = null;   

       {            

         try            

      {                

         sw = new StreamWriter(htmlfilename, false, code);       

                  sw.Write(str);   

                 sw.Flush();       

          }           

       catch { }      

       }       

    sw.Close();    

   sw.Dispose();

 }

C# 创建text文本并写入数据

标签:http   ar   os   sp   文件   数据   on   bs   html   

原文地址:http://www.cnblogs.com/a-mumu/p/4106277.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!