I have a text file in the following url.
http://hosted.stats.com/ifb2009/data.asp?file=en/chlg_standings.txt
I want to parse this text file and display the data as groups, teams etc. Can anyone please let me know how to parse text file.
Probably the best thing to do is use a Scanner that way you can easily specify your used delimiters and read data in its correct form (readXXX()). Also you can use the same logic independent of where the file is from by replacing the Stream in the constructor with another.