i want read txt file into array.
In the array, how can i do that? data = new String[lines.size]
i dont want to hard code 10 in the array.
My code:
BufferedReader abc = new BufferedReader(new FileReader(myfile));
String []data;
data = new String[10]; // <= how can i do that? data = new String[lines.size]
for (int i=0; i<lines.size(); i++) {
data[i] = abc.readLine();
System.out.println(data[i]);
}
abc.close();