Excel > JExcel API > How to Align Text Vertically in Excel Cells
How to Align Text Vertically in Excel Cells
Java Excel API is an open source java library to read, write and modify Excel spread sheets.
This requires the library jxl-2.6.12.jar to be in classpath.
The following example shows how to align text Vertically in Excel Spread sheet.
/**
* @param args
* @throws IOException
* @throws IOException
* @throws WriteException
* @throws BiffException
*/ public static void main(String[] args) throws IOException, WriteException {
//Creates a writable workbook with the given file name
WritableWorkbook workbook = Workbook.createWorkbook(new File("C:/JXL/CellVAlignment.xls"));
//Create sheet and add a label
WritableSheet sheet = workbook.createSheet("My Sheet", 0);
//Set sheet defaults
//width in chars
//height of the row in 1/20ths of a point
sheet.getSettings().setDefaultColumnWidth(20);
sheet.getSettings().setDefaultRowHeight(28 * 20);