Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Created February 26, 2018 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssaurel/fb965a7dc620ab12c50ea6946587e401 to your computer and use it in GitHub Desktop.
Save ssaurel/fb965a7dc620ab12c50ea6946587e401 to your computer and use it in GitHub Desktop.
Row Header for the Excel Tutorial on the SSaurel's Channel
// Create a Row
Row headerRow = sheet.createRow(0);
for (int i = 0; i < columns.length; i++) {
Cell cell = headerRow.createCell(i);
cell.setCellValue(columns[i]);
cell.setCellStyle(headerCellStyle);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment