c#中,怎样逐行读取.txt里面的字符,统计出现的次数,并保存到另一个.txt文件里
展开全部
using System;
using System.IO;
class Test
{
public static void Main()
{
string path = @"D:\1.txt"; //txt文件的路径
try
{
if (File.Exists(path)) //文件必须存在
{
using (StreamReader sr = new StreamReader(path)) //StreamReader读取文件流
{
string desPath = @"D:\1_New.txt";
using (StreamWriter sw = new StreamWriter(desPath)) //StreamWriter写入文件流
{
while (sr.Peek() >= 0) //对应行有内容才继续
{
sw.WriteLine(sr.ReadLine()); //写入读取的每行内容
}
}
}
Console.WriteLine("Work done.");
}
else
{
Console.WriteLine("File NOT exists.");
}
}
catch (Exception e)
{
Console.WriteLine("The process failed: {0}", e.ToString());
}
Console.ReadKey();
}
}
追问
只能写在控制台里面吗?可以写Form里面,加一个button,写在里面吗
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
try
{
string[] Lines=File.ReadAllLines("C:\\Demo.txt");
for(int i=0;i<Lines.Length;i++)
{
Dictionary<string, int> result = new Dictionary<string, int>();
foreach (char chr in Lines[i].ToCharArray())
{
if (result.ContainsKey(chr.ToString()))
result[chr.ToString()] += 1;
else
result.Add(chr.ToString(),1);
}
string end=string.Format("第{0}行:",i+1);
foreach(KeyValuePair<string, int> kvp in result)
{
end+=string.Format("[{0}]字出现了{1}次,\t",kvp.Key,kvp.Value);
}
File.AppendAllText("C:\\Result.txt",end); }
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
Console.ReadLine();
}
}
}
追问
可以具体解释下是什么意思吗?
追答
static void Main(string[] args)
{
try
{
//读取文本的所有行数据
string[] Lines=File.ReadAllLines("C:\\Demo.txt");
for(int i=0;i<Lines.Length;i++) //循环取出每一行
{
// 用于保存数据的字典
Dictionary<string, int> result = new Dictionary<string, int>();
foreach (char chr in Lines[i].ToCharArray()) //读取每行的每一个字
{
//如果字典中已包含了这个字
if (result.ContainsKey(chr.ToString()))
result[chr.ToString()] += 1;//数量增加1
else
result.Add(chr.ToString(),1);//否者存放到字典中
}
string end=string.Format("第{0}行:",i+1);//要存的数据头
foreach(KeyValuePair<string, int> kvp in result)//读取字点中的结果
{
end+=string.Format("[{0}]字出现了{1}次,\t",kvp.Key,kvp.Value);
}
File.AppendAllText("C:\\Result.txt",end); //将结果保存到新的文本中。
}
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
Console.ReadLine();
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询