zoukankan      html  css  js  c++  java
  • c#文件操作

    demo1:

            /// <summary>
            /// 将字符串写入到txt文件
            /// </summary>
            /// <param name="filepath"></param>
            /// <param name="contentStr"></param>
            public void WriteTxt(string filepath,string contentStr) {
                if (!File.Exists(filepath))
                {
                    logger.Info("文件不存在");
                    File.CreateText(filepath);
                }
    
                using (StreamWriter sw = new StreamWriter(filepath))
                {
                    sw.WriteLine(contentStr);
                }
            }
    
    
            public string ReadTxt(string filepath)
            {
                StringBuilder sb = new StringBuilder(1024);
                string line;
                using (StreamReader sr = new StreamReader(filepath))
                {
                    while ((line = sr.ReadLine()) != null)
                    {
                        sb.AppendLine(line);
                    }
                }
                return sb.ToString();
            }

  • 相关阅读:
    内联函数和宏
    python面向对象高级:@property
    python面向对象高级:__slots__
    Python哈希表的例子:dict、set
    python数据结构之哈希表
    python数据结构之队列
    python数据结构之堆栈
    python数据结构之链表
    分治法及其python实现例子
    查找算法:二分法查找及其python实现案例
  • 原文地址:https://www.cnblogs.com/softidea/p/3200049.html
Copyright © 2011-2022 走看看