Is there a simple way to translate an XLS to a CSV formatted file without starting the Excel windowed application?
I need to process some Excel XLS workbooks with sc
In Java world you can use apache poi. You could start from the following Groovy snippet.
FileInputStream fis = new FileInputStream(filename); Workbook wb = new HSSFWorkbook(fis); Sheet sheet = wb.getSheetAt(0); for (Row row : sheet) { for (Cell cell : row) { doSomething(cell.toString()) } }