I have a requirement, where dynamic data comes from excel, and I need to extract header(column) names(1st row) into array list.
file =new FileInputStream(new File("excel file")); HSSFWorkbook workbook = new XSSFWorkbook(file);
Any input greatly appreciated, I am very new to java programming.
Thanks