// skip first line
strLine = br.readLine();
// Read File Line By Line
while ((strLine = br.readLine()) != null) {
// Print the content on the console
lines.addLine(parseLine(strLine, separator, properties));
// System.out.println (strLine);
}
// Close the input stream
in.close();
} catch (Exception e) {// Catch exception if any