51Testing软件测试论坛

标题: 读取文本,不能全部读出来? [打印本页]

作者: 测试积点老人    时间: 2020-8-12 11:11
标题: 读取文本,不能全部读出来?
  1. private void button2_Click(object sender, EventArgs e)
  2. {
  3. string filePath = "";
  4. OpenFileDialog opd = new OpenFileDialog();
  5. if (opd.ShowDialog() == DialogResult.OK)
  6. {
  7. filePath = opd.FileName;
  8. }
  9. StreamReader sr = new StreamReader(filePath,Encoding.Default);
  10. string s = sr.ReadLine();
  11. while (sr.ReadLine()!=null)
  12. {
  13. textBox1.Text+=s + "\r\n";
  14. s = sr.ReadLine();
  15. }
  16. }
复制代码
创建一个10行的文本,为什么只能读出来奇数行?无法全部读出来,怎么解决?

作者: 海海豚    时间: 2020-8-13 09:26
https://www.h5w3.com/29056.html  参考下
作者: bellas    时间: 2020-8-13 10:01
参考下这个链接https://www.h5w3.com/29056.html
作者: 郭小贱    时间: 2020-8-13 11:33
可以参考:https://www.fons.com.cn/70990.html
作者: litingting0214    时间: 2020-8-13 14:34
https://www.h5w3.com/29056.html  参考下这篇文章




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2