How to read and write excel file in java - Stack Overflow
Try the Apache POI HSSF. Here's an example on how to read an excel file: try { POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream(file)); HSSFWorkbook wb = new HSSFWorkbook(fs); HSSFSheet sheet = wb.getSheetAt(0); HSSFRow ......