欢迎来到天天文库
浏览记录
ID:13101952
大小:42.00 KB
页数:10页
时间:2018-07-20
《poi设置excel单元格格式的操作小结》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、POI设置EXCEL单元格格式的操作小结POI中可能会用到一些需要设置EXCEL单元格格式的操作小结:先获取工作薄对象:Java代码HSSFWorkbookwb=newHSSFWorkbook();HSSFSheetsheet=wb.createSheet();HSSFCellStylesetBorder=wb.createCellStyle();HSSFWorkbookwb=newHSSFWorkbook();HSSFSheetsheet=wb.createSheet();HSSFCellStylesetBorder=wb.createCellSty
2、le();一、设置背景色:Java代码setBorder.setFillForegroundColor((short)13);//设置背景色setBorder.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);setBorder.setFillForegroundColor((short)13);//设置背景色setBorder.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);二、设置边框:Java代码setBorder.setBorderBottom(HSSFC
3、ellStyle.BORDER_THIN);//下边框setBorder.setBorderLeft(HSSFCellStyle.BORDER_THIN);//左边框setBorder.setBorderTop(HSSFCellStyle.BORDER_THIN);//上边框setBorder.setBorderRight(HSSFCellStyle.BORDER_THIN);//右边框setBorder.setBorderBottom(HSSFCellStyle.BORDER_THIN);//下边框setBorder.setBorderLeft(HS
4、SFCellStyle.BORDER_THIN);//左边框setBorder.setBorderTop(HSSFCellStyle.BORDER_THIN);//上边框setBorder.setBorderRight(HSSFCellStyle.BORDER_THIN);//右边框三、设置居中:Java代码setBorder.setAlignment(HSSFCellStyle.ALIGN_CENTER);//居中setBorder.setAlignment(HSSFCellStyle.ALIGN_CENTER);//居中四、设置字体:Java代码H
5、SSFFontfont=wb.createFont();font.setFontName("黑体");font.setFontHeightInPoints((short)16);//设置字体大小HSSFFontfont2=wb.createFont();font2.setFontName("仿宋_GB2312");font2.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);//粗体显示font2.setFontHeightInPoints((short)12);setBorder.setFont(font);//选择需要
6、用到的字体格式HSSFFontfont=wb.createFont();font.setFontName("黑体");font.setFontHeightInPoints((short)16);//设置字体大小HSSFFontfont2=wb.createFont();font2.setFontName("仿宋_GB2312");font2.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);//粗体显示font2.setFontHeightInPoints((short)12);setBorder.setFont(font
7、);//选择需要用到的字体格式五、设置列宽:Java代码sheet.setColumnWidth(0,3766);//第一个参数代表列id(从0开始),第2个参数代表宽度值sheet.setColumnWidth(0,3766);//第一个参数代表列id(从0开始),第2个参数代表宽度值六、设置自动换行:Java代码setBorder.setWrapText(true);//设置自动换行setBorder.setWrapText(true);//设置自动换行七、合并单元格:Java代码Regionregion1=newRegion(0,(short)0
8、,0,(short)6);//参数1:行号参数2:起始列号参数3:行号参数4:终止列号shee
此文档下载收益归作者所有