1. 程式人生 > >poi 文字樣式

poi 文字樣式

// 文字樣式
public CellStyle text(Workbook wb) {
	CellStyle style = wb.createCellStyle();
	Font font = wb.createFont();
	font.setFontName("Times New Roman");
	font.setFontHeightInPoints((short) 10);

	style.setFont(font);

	style.setAlignment(CellStyle.ALIGN_LEFT); // 橫向居左
	style.setVerticalAlignment(CellStyle.VERTICAL_CENTER); // 縱向居中

	style.setBorderTop(CellStyle.BORDER_THIN); // 上細線
	style.setBorderBottom(CellStyle.BORDER_THIN); // 下細線
	style.setBorderLeft(CellStyle.BORDER_THIN); // 左細線
	style.setBorderRight(CellStyle.BORDER_THIN); // 右細線

	return style;
}