码迷,mamicode.com
首页 > Web开发 > 详细

.Net常用技巧_C#写入和读取txt文件

时间:2014-07-16 23:11:15      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   文件   数据   

using System.Text.RegularExpressions;
  //脱机数据导出

        private void writeTxt(string str)

        {

            string strFileName = @"\Program Files\firexungengcard\FireXungeng.txt";

            FileInfo file = new FileInfo(strFileName);

            StreamWriter sWriter;

            if (file.Exists)

            {

                sWriter = new StreamWriter(strFileName, true, Encoding.Default); 

                sWriter.WriteLine(str);

                sWriter.Close();

            }

            else

            {

                file.Create().Close();

                sWriter = new StreamWriter(strFileName, true, Encoding.Default);

                sWriter.WriteLine(str);

                sWriter.Close();

            }

            

            

        }

          //返回脱机数据 

           private string[] readTxt()

           {

               string strFileName = @"\Program Files\firexungengcard\FireXungeng.txt";

                FileInfo file = new FileInfo(strFileName);

                if (file.Exists)

                {

                    string content = String.Empty;

                    using (StreamReader sr = new StreamReader(strFileName))

                    {

                        content = sr.ReadToEnd();

                    }
                    //拆分字符串 

                    string[] strContentArray = Regex.Split(content, "\r\n", RegexOptions.IgnoreCase);

                    file.Delete();

                    return   strContentArray;

                }

                else 

                {

                    MessageBox.Show("你没有可导入的数据");

                }

                return null;

           }


 

 

.Net常用技巧_C#写入和读取txt文件,布布扣,bubuko.com

.Net常用技巧_C#写入和读取txt文件

标签:style   blog   color   os   文件   数据   

原文地址:http://www.cnblogs.com/yuyuanfeng/p/3811590.html

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