Is there a way to change the page size and layout while creating the Excel document using Apache POI? The default one is A4-vertical, while I need A6-horizontal (landscape).
I don't think that this question requires code sample, the Excel document is created just as described in the manual:
Workbook wb = new HSSFWorkbook();
Sheet sheet = wb.createSheet("new sheet");