Hi users,
I am using Jakarta POI in my recent project. Its a report generating
tool and one of the formats for output is Excel. How can I put big bold
headers on the resultant report stating Name of the report and that
kind of stuff.
Thanks in advance,
aasheyana
ahjiang@gmail.com - 23 Jun 2006 08:48 GMT
you can do something like
HSSFCellStyle boldStyle = wb.createCellStyle();
boldStyle.setFont(boldFont);
...
row.getCell((short) excelRow).setCellStyle(boldStyle);
..check the api for more options
> Hi users,
>
[quoted text clipped - 5 lines]
> Thanks in advance,
> aasheyana