C#比较两个文本文件的内容是否相等

Posted 五点

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#比较两个文本文件的内容是否相等相关的知识,希望对你有一定的参考价值。

1.引用:using System.IO;

2.代码:

class Program
{
static void Main(string[] args)
{
string filePath1 = "F:\\测试文件\\11.txt";
string filePath2 = "F:\\测试文件\\22.txt";
using (HashAlgorithm hash = HashAlgorithm.Create())
{
using (FileStream file1 = new FileStream(filePath1, FileMode.Open), file2 = new FileStream(filePath2, FileMode.Open))
{
byte[] hashByte1 = hash.ComputeHash(file1);//哈希算法根据文本得到哈希码的字节数组
byte[] hashByte2 = hash.ComputeHash(file2);
string str1 = BitConverter.ToString(hashByte1);//将字节数组装换为字符串
string str2 = BitConverter.ToString(hashByte2);
if (str1 == str2)
{

Console.WriteLine("相同");

}
else
{

Console.WriteLine("不同");

}
}
Console.ReadKey();
}
}

}

 

以上是关于C#比较两个文本文件的内容是否相等的主要内容,如果未能解决你的问题,请参考以下文章

Python:对比两段文本和两个文件不同的地方

在 Python 中,有没有比较简洁的方法来比较两个文本文件的内容是不是相同?

如何用BAT判断文本中的字符串是不是为纯数字,即没有字母,并去执行两个相应的操作

c# 比较两个对象的值是不是相等

14 字符字符串和文本处理

在 c# 中比较两个 pdf 文件的最佳方法是啥?