用StringList简单些,可能效率不是很高<br>list:=TStringList.create;<br>list1:=TStringList.create;<br>list1.loadfromfile('2.txt');<br>list.loadfromfile('1.txt');<br>//然后用list取出每一行,进行比较'<br>if list.count<>list1.count then<br> showmassage('不一样!')<br>else<br> for i:=0 to list.count-1 do<br> if (list<>list1)<br> showmassage('第‘+i+‘行不一致!’);<br><br>