Parsing a file - each line of file has integers, flooats,doubles , strings
I am trying to parse a file.
Each line of the file has ints, doubles, floats and strings.
I am using BufferedReader class.
I cant use StringTokenizer class here.
I want to get each tokens and pass them into my method columnname.setValue(object, row, col) of DefaultTableModel class. Which tokenizer class would be suitable in this situation.
Please help me.

