return strLine;
}
private Lines parseLines(File file, String separator,
List<Property> properties) {
Lines lines = new Lines();
String strLine;
try {
// Open the file that is the first
// command line parameter
FileInputStream fstream = new FileInputStream(file);
// Get the object of DataInputStream
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
// 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