C#逐行读取txt文件的方法
程序员文章站
2023-12-19 20:14:52
本文实例讲述了c#逐行读取txt文件的方法,是c#程序设计中非常实用的技巧,分享给大家供大家参考。
具体方法如下:
private void importtxt...
本文实例讲述了c#逐行读取txt文件的方法,是c#程序设计中非常实用的技巧,分享给大家供大家参考。
具体方法如下:
private void importtxtnoadd() { string line; string sfilename = ""; if (openfiledialog1.showdialog() == dialogresult.ok) { sfilename = openfiledialog1.filename; dttemp.rows.clear(); ixh = 0; system.io.streamreader file = new system.io.streamreader(sfilename); while ((line = file.readline()) != null) { // if(line.length==11 ) datarow dr = dttemp.newrow(); dr[0] = ixh + 1; dr[1] = "临时用户"; dr[2] = line; dttemp.rows.add(dr); ixh++; } file.close(); system.console.readline(); //bindgrid(""); } }
希望本文所述对大家c#程序设计的学习有所帮助。