-1

我正在尝试使用以下代码从 txt 文件中读取一些文本:

  using (StreamReader sr = 
                 File.OpenText(System.IO.Path.GetFullPath("OrderEmailBody.txt")))
  {
      String input;
      while ((input = sr.ReadLine()) != null)
      {
          emailBody += input;
      }
}

txt 文件有一些空白行和换行符,但此代码忽略了 txt 文件中的所有换行符和空白行。请建议如何解决它?

4

2 回答 2

2

它不会忽略它们,您只是不将它们添加到您的邮件正文中。

emailBody += input + Environment.NewLine;
于 2012-06-28T10:11:34.197 回答
0
  using (StreamReader sr = 
             File.OpenText(System.IO.Path.GetFullPath("OrderEmailBody.txt")))
  {
      String input;
      while ((input = sr.ReadLine()) != null)
      {
          emailBody += input;
          email += Environment.NewLine;
      }
  }
于 2012-06-28T10:11:51.473 回答