Hello all, the following code reads from a file and outputs it into another file. I want to using String Tokenizer to output a certain line in the following format.The input file is a .csv file (comma separated) eg: if a line in the input file is: 344, sadf, 45, fdklj 321, dsff, 49, lkjah then i want the output to be: 321 dsff 49 fdlkj if the first column is 321, else the message should be item not found. The code i have written is as follows: import java.io.*;
class FileReadTest {
//--------------------------------------------------< main >--------//
public static void main (String[] args) { FileReadTest t = new FileReadTest(); t.readMyFile(); }