C#: //split String strline=sr.ReadLine(); String[] strHeaderCol=strline.Split('\t'); //read lines while(true) { strline=sr.ReadLine(); if(String.IsNullOrEmpty(strline)) { break; } else { … } } sr.Close(); 相关文章: 2021-08-30 2021-06-28 2021-12-26 2021-12-20 2021-12-25 2021-06-23 2022-12-23 2022-12-23