Reading and printing one by one contents of a file

I have a file which has following contents:

localhost_IP_SIP_1233026552455.xml
localhost_IP_SIP_1233026552460.xml
localhost_IP_SIP_1233026552467.xml
localhost_IP_SIP_1233026552759.xml
localhost_IP_SIP_1233026552969.xml
localhost_IP_SIP_1233026552975.xml
localhost_IP_SIP_1233026552981.xml

I want to print the content one by one......

Can any one please help me ?

while read LINE; do
   cat "${LINE}"
done < infile

=======================

actually i have a directory which contains number of file.
i want to print one by one .

Can you please help me ?