标签:方法 setfont htm pen bottom ica cli switch out
Apache POI是Apache软件基金会的开放源码函式库,POI提供API给Java程序对Microsoft Office格式档案读和写的功能。
HSSF 是Horrible SpreadSheet Format的缩写,通过HSSF,你可以用纯Java代码来读取、写入、修改Excel文件。HSSF 为读取操作提供了两类API:usermodel和eventusermodel,即“用户模型”和“事件-用户模型”。
HSSFWorkbook excel文档对象
HSSFSheet excel的sheet HSSFRow excel的行
HSSFCell excel的单元格 HSSFFont excel字体
HSSFName 名称 HSSFDataFormat 日期格式
HSSFHeader sheet头
HSSFFooter sheet尾
HSSFCellStyle cell样式
HSSFDateUtil 日期
HSSFPrintSetup 打印
HSSFErrorConstants 错误信息表
8、单元格值类型读写
9、设置列宽、行高
10、添加区域,合并单元格
11、保存Excel文件
12、根据单元格不同属性返回字符串数值
13、常用单元格边框格式
14、设置字体和内容位置
15、插入图片
16、调整工作表位置
17、设置打印区域
18、标注脚注
19、在工作单中清空行数据,调整行位置
20、选中指定的工作表
21、工作表的放大缩小
22、头注和脚注
23、自定义颜色
24、填充和颜色设置
25、强行刷新单元格公式
说明:FormulaEvaluator提供了evaluateFormulaCell(Cell cell)方法,计算公式保存结果,但不改变公式。而evaluateInCell(Cell cell) 方法是计算公式,并将原公式替换为计算结果,也就是说该单元格的类型不在是Cell.CELL_TYPE_FORMULA而是Cell.CELL_TYPE_NUMBERIC。HSSFFormulaEvaluator提供了静态方法evaluateAllFormu
laCells(HSSFWorkbook wb) ,计算一个Excel文件的所有公式,用起来很方便。
-------------------------------------------poi 方法总结-------------------------------------------------------------------
-.设置不显示excel网格线
sheet.setDisplayGridlines(false);其中sheet是Sheet对象
2.设置excel单元格中的内容换行
cellStyle.setWrapText(true);其中cellStyle是WorkBook创建的CellStyle对象,然后将cellStyle设置到要换行的Cell对象,最后在要换行的对象(一般为字符串)加入"/r/n"。如
topTile.append("/r/n" +"cellContent");
3.单元格的合并
sheet.addMergedRegion(new CellRangeAddress(0, 4,
0, 2));本示例为合并4行2列
4.设置页眉和页脚的页数
HSSFHeader
header = sheet.getHeader();
header.setCenter("Center Header");
header.setLeft("Left Header");
header.setRight(HSSFHeader.font("Stencil-Normal", "Italic")
+
HSSFHeader.fontSize((short) 16) + "Right w/ Stencil-Normal Italic
font and size 16");
HSSFFooter footer = (HSSFFooter
)sheet.getFooter()
footer.setRight( "Page " + HSSFFooter.page() + "
of " + HSSFFooter.numPages() );
5.使得一个Sheet适合一页
sheet.setAutobreaks(true);
6.设置放大属性(Zoom被明确为一个分数,例如下面的75%使用3作为分子,4作为分母)
sheet.setZoom(3,4);
7.设置打印
HSSFPrintSetup print = (HSSFPrintSetup)
sheet.getPrintSetup();
print.setLandscape(true);//设置横向打印
print.setScale((short)
70);//设置打印缩放70%
print.setPaperSize(HSSFPrintSetup.A4_PAPERSIZE);//设置为A4纸张
print.setLeftToRight(true);//設置打印顺序先行后列,默认为先列行
print.setFitHeight((short)
10);设置缩放调整为10页高
print.setFitWidth((short)
10);设置缩放调整为宽高
sheet.setAutobreaks(false);
if (i != 0 && i % 30 ==
0)
sheet.setRowBreak(i);//設置每30行分頁打印
8.反复的行和列(设置打印标题)
HSSFWorkbook wb = new
HSSFWorkbook();
wb.setRepeatingRowsAndColumns(0, 0, 12, 1,
6);//设置1到12列,行1到6每一页重复打印
9.调整单元格宽度
sheet.setAutobreaks(true);
sheet.setColumnWidth((short)i,colsWidth[i]);
//设定单元格长度
sheet.autoSizeColumn((short)
i);//自动根据长度调整单元格长度
转载:http://blog.sina.com.cn/s/blog_91c0fdb50101kfd4.html
练习代码:
1 package cn.fanqi.fq; 2 3 import java.io.FileNotFoundException; 4 import java.io.FileOutputStream; 5 import java.io.IOException; 6 import java.util.ArrayList; 7 import org.apache.poi.ss.usermodel.IndexedColors; 8 import org.apache.poi.xssf.usermodel.XSSFCellStyle; 9 import org.apache.poi.xssf.usermodel.XSSFFont; 10 import org.apache.poi.xssf.usermodel.XSSFRow; 11 import org.apache.poi.xssf.usermodel.XSSFSheet; 12 import org.apache.poi.xssf.usermodel.XSSFWorkbook; 13 14 public class TestDemo { 15 16 public void createExcel() { 17 18 XSSFWorkbook x = new XSSFWorkbook(); 19 20 XSSFFont font1 = x.createFont(); 21 font1.setFontHeightInPoints((short) 15); 22 font1.setFontName("Pristina"); 23 font1.setColor(IndexedColors.GREEN.index); 24 //font1.setColor(HSSFColor.YELLOW.index); 25 XSSFCellStyle style = x.createCellStyle(); 26 style.setFont(font1); 27 28 XSSFSheet sheet = x.createSheet(); 29 XSSFRow row0 = sheet.createRow(0); 30 row0.createCell(0).setCellValue("姓名"); 31 row0.getCell(0).setCellStyle(style); 32 row0.createCell(1).setCellValue("性别"); 33 row0.getCell(1).setCellStyle(style); 34 row0.createCell(2).setCellValue("年龄"); 35 row0.getCell(2).setCellStyle(style); 36 row0.createCell(3).setCellValue("职位"); 37 row0.getCell(3).setCellStyle(style); 38 row0.createCell(4).setCellValue("工作年限"); 39 row0.getCell(4).setCellStyle(style); 40 41 User u = new User(); 42 u.setName("郭大侠"); 43 u.setSex("男"); 44 u.setAge("30"); 45 u.setJob("Java开发"); 46 u.setExperience("2"); 47 48 User u1 = new User(); 49 u1.setName("陶大婶"); 50 u1.setSex("男"); 51 u1.setAge("28"); 52 u1.setJob("Java开发"); 53 u1.setExperience("3"); 54 55 ArrayList<User> arrayList = new ArrayList<User>(); 56 arrayList.add(u); 57 arrayList.add(u1); 58 59 for(int i=1; i<3; i++){ 60 XSSFRow row = sheet.createRow(i); 61 row.createCell(0).setCellValue(arrayList.get(i-1).getName()); 62 row.createCell(1).setCellValue(arrayList.get(i-1).getSex()); 63 row.createCell(2).setCellValue(arrayList.get(i-1).getAge()); 64 row.createCell(3).setCellValue(arrayList.get(i-1).getJob()); 65 row.createCell(4).setCellValue(arrayList.get(i-1).getExperience()); 66 } 67 68 try { 69 x.write(new FileOutputStream("E:\\test.xlsx")); 70 } catch (FileNotFoundException e) { 71 e.printStackTrace(); 72 } catch (IOException e) { 73 e.printStackTrace(); 74 } 75 } 76 77 public static void main(String[] args) { 78 79 TestDemo t = new TestDemo(); 80 t.createExcel(); 81 } 82 }
标签:方法 setfont htm pen bottom ica cli switch out
原文地址:http://www.cnblogs.com/fqfanqi/p/6172223.html