10 aaa aaa aaa bbb bbb bbb ccc ccc ccc ffffd ffffd ffffd
I have a textfile that Im trying to read with tab delimiters. whenever i read the file, i get an
If you are use Scanner here no need to split, you can use next() here as follows
Scanner
split
next()
Scanner sc=new Scanner(new FileReader("D:\\test.txt")); while (sc.hasNextLine()){ System.out.println(sc.next()); }