4243444546474849505152
Sheet sheet = wb.createSheet("Accounts"); int rowNum = 1; Row row = sheet.createRow(rowNum++); Font font = wb.createFont(); font.setFontHeightInPoints((short)24); font.setFontName(FONT_TYPE); font.setColor(FONT_COLOR_TITLE); /*** Header *****/
6566676869707172737475
1, //first column (0-based) 16 //last column (0-based) )); /*** Body *****/ font = wb.createFont(); font.setFontHeightInPoints((short)12); font.setFontName(FONT_TYPE); font.setColor(FONT_COLOR); style = wb.createCellStyle();