I got a small problem while working with a project.
I already have an excel file with some sheets in it.
Whenever I need to create a new excel file sheet with a particular name, I need to check if there's already a sheet with that name,
If it is so,
1.Then I need to delete it(thus deleting any old info),note the position of the sheet and create a new one with the same name at the same position
If not
1.Then i need to create a new sheet
I am stuck with it.Could anyone give some insights/some steps to accomplishing the task? Could I do the same with Apache POI or conveniently any other API?
Thanks in advance.I am supposed to use java as a medium while doing this.