is it possible to change sheet name with apache poi MS excel java android
The following should do the trick:
workbook.setSheetName(workbook.getSheetIndex(sheet), "newName");
If you already know the sheet index, simply call
workbook.setSheetName(sheet-index, "my sheet name");
where sheet-index is the sheet number (0 based)