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

c# 读取txt方法

时间:2018-06-28 16:51:20      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:cep   c#   line   方法   pre   close   ons   IV   ade   

string strLine;
            try
            {
       FileStream aFile = new FileStream("Log.txt", FileMode.Open);
                StreamReader sr = new StreamReader(aFile);
                strLine = sr.ReadLine();
         //Read data in line by line 这个兄台看的懂吧~一行一行的读取
                if (strLine != null)
                {
         //     Console.WriteLine(strLine);
        //      string Line = sr.ReadLine();
            MessageBox.Show(strLine);
                }
         sr.Close();
            }
            catch (IOException ex)
            {
                Console.WriteLine("An IOException has been thrown!");
                Console.WriteLine(ex.ToString());
                Console.ReadLine();
                return;
            }

  

c# 读取txt方法

标签:cep   c#   line   方法   pre   close   ons   IV   ade   

原文地址:https://www.cnblogs.com/MagicAsa/p/9239215.html

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