zoukankan      html  css  js  c++  java
  • C# 操作txt

    读取文件

    FileStream fs = new FileStream("C:\Users\john\Desktop\a.txt", FileMode.Open);
    读取字符
                StreamReader m_streamReader = new StreamReader(fs);
    从0位置开始读
                m_streamReader.BaseStream.Seek(0, SeekOrigin.Begin);
                string arry = "";

    从当前流中读取一行字符
                string strLine = m_streamReader.ReadLine();
                do
                {
                    string[] split = strLine.Split(',');
                    string a = split[3];
                    string b = split[8];
                    if (a.IndexOf("小七孔") == -1)
                    {
                        if (b.IndexOf("2014-04-07") != -1)
                        {
                            arry += "AWSASD" + strLine.Substring(7) + " ";
                        }
                    }
      新的流中读取
                    strLine = m_streamReader.ReadLine();

                } while (strLine != null && strLine != "");
                string ss = arry;
                m_streamReader.Close();
                m_streamReader.Dispose();
                fs.Close();
                fs.Dispose();
                Console.Write(arry);
                Console.ReadLine();

  • 相关阅读:
    由于媒体16摘要天
    vim note (2)
    JEECG 什么是商业版本的功能最近添加的好友?
    图解linux启动过程
    Error: unrecognized flag -version
    基于RDP瘦客户机协议的简要说明
    Android在网络上分析获取图片(支持bmp格式)
    [React] Validate Custom React Component Props with PropTypes
    [Python] Wikipedia Crawler
    [Python] Python list slice syntax fun
  • 原文地址:https://www.cnblogs.com/xiaocandou/p/3949905.html
Copyright © 2011-2022 走看看