-2
votes
1answer
142 views

StringTokenizer start from next line if more then one (\t) in file java

I am parsing a file data on the base of \t what I want if found more then one \t start parsing from next new line and start arraylist words from 0. public static void readFile() throws IOException { ...
0
votes
0answers
113 views

Why is my stringtokenizer not reaching end of file? [closed]

import java.io.BufferedOutputStream; import java.io.FileOutputStream; import java.io.FileInputStream; import java.io.IOException; import java.io.OutputStream; import java.util.StringTokenizer; import ...
0
votes
2answers
230 views

string tokenizer wrong usage in java

I believe I am not using correctly String Tokenizer. Here is my code: buffer = new byte[(int) (end - begin)]; fin.seek(begin); fin.read(buffer, 0, (int) (end - ...