C#如何一行一行读取指定格式的TXT数据? 比如先读取1,2,3,4,把这些数据处理后,再对下一行进行处理。
2个回答
展开全部
static void Main(string[] args)
{
string strPath = txt的位置
string line = string.Empty;
StreamReader sr = new StreamReader(strPath);
line = sr.ReadLine();
}
读到的line就是一行,你可以分割出来
你可以通过循环来读
while(( line = sr.ReadLine()) != null)...
{
string strPath = txt的位置
string line = string.Empty;
StreamReader sr = new StreamReader(strPath);
line = sr.ReadLine();
}
读到的line就是一行,你可以分割出来
你可以通过循环来读
while(( line = sr.ReadLine()) != null)...
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询