1、 sheet.setColumnWidth(5, 6500); sheet.setColumnWidth(6, 6500); sheet.setColumnWidth(7, 2500); / Sheet样式 HSSFCellStyle sheetStyle = workbook.createCellStyle(); / 背景色的设定 sheetStyle.setFillBackgroundColor(HSSFColor.GREY_25_PERCENT.index); / 前景色的设定 sheetStyle.setFillForegroundColor(HSSFColor.GREY_25_PER
2、CENT.index); / 填充模式 sheetStyle.setFillPattern(HSSFCellStyle.FINE_DOTS); / 设置列的样式 for (int i = 0; i <= 14; i+) sheet.setDefaultColumnStyle(short) i, sheetStyle); / 设置字体 HSSFFont headfont = workbook.createFont(); headfont.setFontName(黑体); headfont.setFontHeightInPoints(short) 22);/ 字体大小 headfont.se
3、tBoldweight(HSSFFont.BOLDWEIGHT_BOLD);/ 加粗 / 另一个样式 HSSFCellStyle headstyle = workbook.createCellStyle(); headstyle.setFont(headfont); headstyle.setAlignment(HSSFCellStyle.ALIGN_CENTER);/ 左右居中 headstyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);/ 上下居中 headstyle.setLocked(true); headstyle.se
4、tWrapText(true);/ 自动换行 / 另一个字体样式 HSSFFont columnHeadFont = workbook.createFont(); columnHeadFont.setFontName(宋体 columnHeadFont.setFontHeightInPoints(short) 10); columnHeadFont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD); / 列头的样式 HSSFCellStyle columnHeadStyle = workbook.createCellStyle(); columnHeadStyle
5、.setFont(columnHeadFont); columnHeadStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER); columnHeadStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER); columnHeadStyle.setLocked(true); columnHeadStyle.setWrapText(true); columnHeadStyle.setLeftBorderColor(HSSFColor.BLACK.index);/ 左边框的颜色 columnHeadSt
6、yle.setBorderLeft(short) 1);/ 边框的大小 columnHeadStyle.setRightBorderColor(HSSFColor.BLACK.index);/ 右边框的颜色 columnHeadStyle.setBorderRight(short) 1); columnHeadStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN); / 设置单元格的边框为粗体 columnHeadStyle.setBottomBorderColor(HSSFColor.BLACK.index); / 设置单元格的边框颜色 / 设置单元
7、格的背景颜色(单元格的样式会覆盖列或行的样式) columnHeadStyle.setFillForegroundColor(HSSFColor.WHITE.index); HSSFFont font = workbook.createFont(); font.setFontName( font.setFontHeightInPoints(short) 10); / 普通单元格样式 HSSFCellStyle style = workbook.createCellStyle(); style.setFont(font); style.setAlignment(HSSFCellStyle.ALI
8、GN_LEFT); style.setVerticalAlignment(HSSFCellStyle.VERTICAL_TOP); style.setWrapText(true); style.setLeftBorderColor(HSSFColor.BLACK.index); style.setBorderLeft(short) 1); style.setRightBorderColor(HSSFColor.BLACK.index); style.setBorderRight(short) 1); style.setBorderBottom(HSSFCellStyle.BORDER_THIN
9、); style.setBottomBorderColor(HSSFColor.BLACK.index); / 设置单元格的边框颜色 style.setFillForegroundColor(HSSFColor.WHITE.index);/ 设置单元格的背景颜色 HSSFCellStyle centerstyle = workbook.createCellStyle(); centerstyle.setFont(font); centerstyle.setAlignment(HSSFCellStyle.ALIGN_CENTER); centerstyle.setVerticalAlignmen
10、t(HSSFCellStyle.VERTICAL_CENTER); centerstyle.setWrapText(true); centerstyle.setLeftBorderColor(HSSFColor.BLACK.index); centerstyle.setBorderLeft(short) 1); centerstyle.setRightBorderColor(HSSFColor.BLACK.index); centerstyle.setBorderRight(short) 1); centerstyle.setBorderBottom(HSSFCellStyle.BORDER_
11、THIN); centerstyle.setBottomBorderColor(HSSFColor.BLACK.index); centerstyle.setFillForegroundColor(HSSFColor.WHITE.index); try / 创建第一行 HSSFRow row0 = sheet.createRow(0); / 设置行高 row0.setHeight(short) 900); / 创建第一列 HSSFCell cell0 = row0.createCell(0); cell0.setCellValue(new HSSFRichTextString(中非发展基金投资
12、项目调度会工作落实情况对照表); cell0.setCellStyle(headstyle); /* * 合并单元格 * 第一个参数:第一个单元格的行数(从0开始) * 第二个参数:第二个单元格的行数(从0开始) * 第三个参数:第一个单元格的列数(从0开始) * 第四个参数:第二个单元格的列数(从0开始) */ CellRangeAddress range = new CellRangeAddress(0, 0, 0, 7); sheet.addMergedRegion(range); / 创建第二行 HSSFRow row1 = sheet.createRow(1); HSSFCell c
13、ell1 = row1.createCell(0); cell1.setCellValue(new HSSFRichTextString(本次会议时间:2009年8月31日 前次会议时间:2009年8月24日 cell1.setCellStyle(centerstyle); / 合并单元格 range = new CellRangeAddress(1, 2, 0, 7); / 第三行 HSSFRow row2 = sheet.createRow(3); row2.setHeight(short) 750); HSSFCell cell = row2.createCell(0); cell.setCellValue(new HSSFRichTextString(责任者 cell.setCellStyle(columnHeadStyle); cell = row2.createCell(1); cell.setCellValue(new HSSFRic
copyright@ 2008-2022 冰豆网网站版权所有
经营许可证编号:鄂ICP备2022015515号-1