如何得到特定txt文档的总行数?
如题
------解决方案--------------------readline
++n
------解决方案--------------------ReadToEnd.Split( "\r\n ".ToCharArray()).Length;
------解决方案--------------------try
{
StreamReader reader = File.OpenText(this.openFileDialog1.FileName);
int count = 0;
while (reader.ReadLine() != null)
count++;
MessageBox.Show(count.ToString());
}
catch
{
MessageBox.Show( "未打开任何文本文件 ");
return;
}
------解决方案--------------------//得到文件内容,然后看看他有几个\n(换行符)这里的ReadText是我自己类库中的方法,
string content = WRKJ.SystemFramework.FSO.ReadText(Server.MapPath( "tt.js "));
Response.Write(content.Split( '\n ').Length);
------解决方案--------------------ReadToEnd.Split( "\r\n ".ToCharArray()).Length;
顶这个了
------解决方案--------------------加入 ASP。NET C#群吧 群号:1873156
------解决方案--------------------顶
zhangliu_521(浪客)
readline
++line
------解决方案--------------------学习+jf
------解决方案--------------------ReadToEnd.Split( "\r\n ".ToCharArray()).Length;
顶这个了
------解决方案--------------------reader.ReadLine()计数
不知道还有别的办法没,有就学
------解决方案--------------------其实这种问题有意思..
有很多的方法..
大家继续
------解决方案--------------------加入ASP。NET C#群吧,群号是: 1873156