zoukankan      html  css  js  c++  java
  • 读取文件中的文本并返回字符串

    在项目中有很多信息需要存放到文本文件中,比如一些介绍信息,文章等,因此经常需要读取文件中文本,并返回字符串。

    下面提供一个读取文件并返回字符串的方法,代码如下:

    /// <summary>
            /// 将文件读取到字符串中
            /// </summary>
            /// <param name="filePath">文件的绝对路径</param>
            public string FileToString(string filePath)
            {
                return FileToString(filePath, Encoding.GetEncoding("GB2312"));
            }
            /// <summary>
            /// 将文件读取到字符串中
            /// </summary>
            /// <param name="filePath">文件的绝对路径</param>
            /// <param name="encoding">字符编码</param>
            public  string FileToString(string filePath, Encoding encoding)
            {
                //创建流读取器
                StreamReader reader = new StreamReader(filePath, encoding);
                string strContent = "";
                try
                {
                    //读取流
                    strContent = reader.ReadToEnd();
                   
                }
                catch (Exception ex)
                {
                    //输出的调试字符串
                    string strOuput = string.Format("将文件读取到字符串中出现错误,ErrMsg{0},InnerException{1}\n",ex.Message,ex.InnerException);
                    //将信息写入到日志输出文件
                    DllComm.TP_WriteAppLogFileEx(DllComm.g_AppLogFileName, strOuput);
                }
                finally
                {
                    //关闭流读取器
                    reader.Close();
                }
                return strContent;
            }

  • 相关阅读:
    【XSY3905】字符串题(lyndon串,构造)
    【XSY3904】直线(分块)
    收藏的数学网址
    Music!
    Codeforces Global Round 12
    Codeforces Round #698 (Div. 2)
    Codeforces Round #727 (Div. 2)
    Croatian Open Competition in Informatics (COCI) 2020/2021 — Round #2
    Tokio Marine & Nichido Fire Insurance Programming Contest 2021 (AtCoder Regular Contest 122)
    NowCoder IOI 周赛 26 [提高组]
  • 原文地址:https://www.cnblogs.com/kevinGao/p/2186444.html
Copyright © 2011-2022 走看看