Basic question: How do I load an Excel template for use with POI and then save it to an XLS file?
Edit:
The answer is:
FileInputStream inputStream = new FileInputStream(new File(templateFile));
Workbook workbook = new HSSFWorkbook(inputStream);
(Just load the template as a workbook and then write the workbook as an XLS file elsewhere.)