I am writing a parser code to read a .csv file and parse it to XML. This is the code I have and it works, except I would like it to skip the first line in the file. So I decided
Use buffer reader two times, like this:
while ((line = br.readLine()) != null) { while ((line = br.readLine()) != null) { //your code } }