The input file
Each line of the input file will contain a sentence with wordsseparated by one space. Read a line from the listedbelow  and use a StringTokenizer to extract the wordsfrom the line.
The input file
.
Mary had a little lambwhose fl33ce was white as sn0wAnd everywhere that @Mary wentthe 1amb was sure to go.
Read the above that contains a paragraph of words. Put all the words in an array, put the valid words (words that have only letters) in a second array, and put the invalid words in a third array. Sort the array of valid words using Selection Sort. Write a java program Create a GUI to display the arrays using a GridLayout with one row and three columns.
please explain the code properly and give reassnong
An example of the input file would be:
Mary had a little lamb
Whose fl33ce was white as sn0w.
file name
WordGUI.java