CSV File Reading

Hi all,

I need a small help. I have one csv file. I want to remove the first five lines from that csv file, write it into an excel file. please help me is this facility available in java. If it possible what class or method should is use?

please help me how i can achieve this

Thanking you.

Regards,

Bertha

Hi Bertha,

You can delete the first row with java.io classes before opening file with Aspose.Cells, or you can import all data of the CSV file ,then delete the first row with Cells.deleteRows() method.