Im adding elements to a Vector (every line of the file has one word or it is empty):
...
String FileLine;
while((FileLine = bufferedReader.readLine()) != null) {
newVector.add(FileLine);
}
....
how can I not include the empty lines that the BufferedReader finds in the txt file?