原文地址http://hi.baidu.com/j_changhong/item/981fa58d05fa755926ebd96b注原文是3.6 此文是3.9


java读取excel文件的顺序是: 
Excel文件->工作表->行->单元格 对应到POI中,为:workbook->sheet->row->cell 
注意: 
注意:   
   1.sheet, 以0开始,以workbook.getNumberOfSheets()-1结束 
   2.row, 以0开始(getFirstRowNum),以getLastRowNum结束 
   3.cell, 以0开始(getFirstCellNum),以getLastCellNum结束, 
     结束的数目不知什么原因与显示的长度不同,可能会偏长

  1. //import org.apache.poi.ss.usermodel.contrib.CellUtil;
  2. //import org.apache.poi.ss.usermodel.contrib.RegionUtil;
  3. 这两个类已更换到 这两个类移动是3.7开始变的
  4. //import org.apache.poi.ss.util.CellUtil;
  5. //import org.apache.poi.ss.util.RegionUtil;
  1. package com.svse.test;
  2.  
  3. import java.awt.Color;
  4. import java.io.FileInputStream;
  5. import java.io.FileNotFoundException;
  6. import java.io.FileOutputStream;
  7. import java.io.IOException;
  8. import java.io.InputStream;
  9. import java.util.Calendar;
  10. import java.util.Date;
  11.  
  12. import org.apache.poi.hssf.usermodel.HSSFCell;
  13. import org.apache.poi.hssf.usermodel.HSSFClientAnchor;
  14. import org.apache.poi.hssf.usermodel.HSSFFooter;
  15. import org.apache.poi.hssf.usermodel.HSSFPatriarch;
  16. import org.apache.poi.hssf.usermodel.HSSFRichTextString;
  17. import org.apache.poi.hssf.usermodel.HSSFShape;
  18. import org.apache.poi.hssf.usermodel.HSSFSheet;
  19. import org.apache.poi.hssf.usermodel.HSSFSimpleShape;
  20. import org.apache.poi.hssf.usermodel.HSSFTextbox;
  21. import org.apache.poi.hssf.usermodel.HSSFWorkbook;
  22. import org.apache.poi.hssf.util.HSSFColor;
  23. import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
  24. import org.apache.poi.ss.usermodel.Cell;
  25. import org.apache.poi.ss.usermodel.CellStyle;
  26. import org.apache.poi.ss.usermodel.ClientAnchor;
  27. import org.apache.poi.ss.usermodel.CreationHelper;
  28. import org.apache.poi.ss.usermodel.DataFormat;
  29. import org.apache.poi.ss.usermodel.DateUtil;
  30. import org.apache.poi.ss.usermodel.Drawing;
  31. import org.apache.poi.ss.usermodel.Font;
  32. import org.apache.poi.ss.usermodel.IndexedColors;
  33. import org.apache.poi.ss.usermodel.Picture;
  34. import org.apache.poi.ss.usermodel.PrintSetup;
  35. import org.apache.poi.ss.usermodel.RichTextString;
  36. import org.apache.poi.ss.usermodel.Row;
  37. import org.apache.poi.ss.usermodel.Sheet;
  38. import org.apache.poi.ss.usermodel.Workbook;
  39. import org.apache.poi.ss.usermodel.WorkbookFactory;
  40. //import org.apache.poi.ss.usermodel.contrib.CellUtil;
  41. //import org.apache.poi.ss.usermodel.contrib.RegionUtil;
  42. import org.apache.poi.ss.util.CellRangeAddress;
  43. import org.apache.poi.ss.util.CellReference;
  44. import org.apache.poi.ss.util.CellUtil;
  45. import org.apache.poi.ss.util.RegionUtil;
  46. import org.apache.poi.util.IOUtils;
  47. import org.apache.poi.xssf.usermodel.XSSFCellStyle;
  48. import org.apache.poi.xssf.usermodel.XSSFWorkbook;
  49. import org.junit.BeforeClass;
  50. import org.junit.Test;
  51.  
  52. /**
  53. * @author WESTDREAM
  54. * @since 2010-8-7 下午10:34:03
  55. */
  56. public class POIExcelTest {
  57.  
  58. /**
  59. * @throws java.lang.Exception
  60. */
  61. public static final String XLS_WORKBOOK_LOCATION = "D:/workbook.xls";
  62. public static final String XLS_OR_XLSX_DIR = "D:/";
  63. public static final String XLSX_WORKBOOK_LOCATION = "D:/workbook.xlsx";
  64. public static final String IMAGE_LOCATION = "book.jpg";
  65.  
  66. @BeforeClass
  67. public static void setUpBeforeClass() throws Exception {
  68.  
  69. }
  70.  
  71. @Test
  72. public void testWriteExcel() {
  73. // ## 重复利用 的对象 ##//
  74. Workbook wb = null;
  75. FileOutputStream fileOut = null;
  76. CellStyle cellStyle = null;
  77. Cell cell = null;
  78. Font font = null;
  79.  
  80. /**
  81. * EXCEL早期版本
  82. */
  83. try {
  84. // ## 创建早期EXCEL的Workbook ##//
  85. wb = new HSSFWorkbook();
  86. // ## 获取HSSF和XSSF的辅助类 ##//
  87. CreationHelper createHelper = wb.getCreationHelper();
  88. // ## 创建一个名为“New Sheet”的Sheet ##//
  89. Sheet sheet = wb.createSheet("New Sheet");
  90.  
  91. /** 第一行 --- CELL创建,数据填充及日期格式 **/
  92. Row row1 = sheet.createRow(0);
  93. // Cell cell = row.createCell(0);
  94. // cell.setCellValue(1);
  95.  
  96. // ## 在相应的位置填充数据 ##//
  97. row1.createCell(0).setCellValue(1);
  98. row1.createCell(1).setCellValue(1.2);
  99. row1.createCell(2).setCellValue(
  100. createHelper.createRichTextString("CreationHelper---字符串"));
  101. row1.createCell(3).setCellValue(true);
  102.  
  103. // ## 填充日期类型的数据---未设置Cell Style ##//
  104. row1.createCell(4).setCellValue(new Date());
  105. // ## 填充日期类型的数据---已设置Cell Style ##//
  106. cellStyle = wb.createCellStyle();
  107. cellStyle.setDataFormat(createHelper.createDataFormat().getFormat(
  108. "yyyy年MM月dd日 hh:mm:ss"));
  109. // cellStyle.setDataFormat(createHelper.createDataFormat().getFormat("mm/dd/yyyy h:mm"));
  110. cellStyle.setDataFormat(createHelper.createDataFormat().getFormat(
  111. "yyyy-MM-dd hh:mm:ss"));
  112. cell = row1.createCell(5);
  113. cell.setCellValue(new Date());
  114. cell.setCellStyle(cellStyle);
  115. // ## 另一种创建日期的方法 ##//
  116. /*
  117. * cell = row1.createCell(6);
  118. * cell.setCellValue(Calendar.getInstance());
  119. * cell.setCellStyle(cellStyle);
  120. */
  121.  
  122. /** 第二行 --- 数据类型 **/
  123. Row row2 = sheet.createRow(1);
  124. row2.createCell(0).setCellValue(1.1);
  125. row2.createCell(1).setCellValue(new Date());
  126. row2.createCell(2).setCellValue(Calendar.getInstance());
  127. row2.createCell(3).setCellValue("字符串");
  128. row2.createCell(4).setCellValue(true);
  129. // ## 错误的CELL数据格式 ##//
  130. row2.createCell(5).setCellType(HSSFCell.CELL_TYPE_ERROR);
  131.  
  132. /** 第三行 --- CELL的各种对齐方式 **/
  133. Row row3 = sheet.createRow(2);
  134. row3.setHeightInPoints(30);
  135. // ## 水平居中,底端对齐 ##//
  136. createCell(wb, row3, (short) 0, XSSFCellStyle.ALIGN_CENTER,
  137. XSSFCellStyle.VERTICAL_BOTTOM);
  138. // ## 水平居中,垂直居中 ##//
  139. createCell(wb, row3, (short) 1,
  140. XSSFCellStyle.ALIGN_CENTER_SELECTION,
  141. XSSFCellStyle.VERTICAL_BOTTOM);
  142. // ## 填充 ,垂直居中 ##//
  143. createCell(wb, row3, (short) 2, XSSFCellStyle.ALIGN_FILL,
  144. XSSFCellStyle.VERTICAL_CENTER);
  145. // ## 左对齐,垂直居中 ##//
  146. createCell(wb, row3, (short) 3, XSSFCellStyle.ALIGN_GENERAL,
  147. XSSFCellStyle.VERTICAL_CENTER);
  148. // ## 左对齐,顶端对齐 ##//
  149. createCell(wb, row3, (short) 4, XSSFCellStyle.ALIGN_JUSTIFY,
  150. XSSFCellStyle.VERTICAL_JUSTIFY);
  151. // ## 左对齐,顶端对齐 ##//
  152. createCell(wb, row3, (short) 5, XSSFCellStyle.ALIGN_LEFT,
  153. XSSFCellStyle.VERTICAL_TOP);
  154. // ## 右对齐,顶端对齐 ##//
  155. createCell(wb, row3, (short) 6, XSSFCellStyle.ALIGN_RIGHT,
  156. XSSFCellStyle.VERTICAL_TOP);
  157.  
  158. /** 第四行 --- CELL边框 **/
  159. Row row4 = sheet.createRow(3);
  160. cell = row4.createCell(1);
  161. cell.setCellValue(4);
  162. cellStyle = wb.createCellStyle();
  163. // ## 设置底部边框为THIN ##//
  164. cellStyle.setBorderBottom(CellStyle.BORDER_THIN);
  165. // ## 设置底部边框颜色为黑色 ##//
  166. cellStyle.setBottomBorderColor(IndexedColors.BLACK.getIndex());
  167. // ## 设置左边边框为THIN ##//
  168. cellStyle.setBorderLeft(CellStyle.BORDER_THIN);
  169. // ## 设置左边边框颜色为红色 ##//
  170. cellStyle.setLeftBorderColor(IndexedColors.RED.getIndex());
  171. // ## 设置右边边框为THIN ##//
  172. cellStyle.setBorderRight(CellStyle.BORDER_THIN);
  173. // ## 设置右边边框颜色为蓝色 ##//
  174. cellStyle.setRightBorderColor(IndexedColors.BLUE.getIndex());
  175. // ## 设置顶部边框为MEDIUM DASHED ##//
  176. cellStyle.setBorderTop(CellStyle.BORDER_MEDIUM_DASHED);
  177. // ## 设置顶部边框颜色为黑色 ##//
  178. cellStyle.setTopBorderColor(IndexedColors.BLACK.getIndex());
  179. cell.setCellStyle(cellStyle);
  180.  
  181. /** 第五行 --- 填充与颜色 **/
  182. Row row5 = sheet.createRow((short) 4);
  183. // ## Aqua背景 ##//
  184. cellStyle = wb.createCellStyle();
  185. cellStyle.setFillBackgroundColor(IndexedColors.AQUA.getIndex());
  186. // ## 设置填充模式为BIG SPOTS ##//
  187. cellStyle.setFillPattern(CellStyle.BIG_SPOTS);
  188. cell = row5.createCell((short) 1);
  189. cell.setCellValue("Aqua背景");
  190. cell.setCellStyle(cellStyle);
  191.  
  192. // ## 橙色前景色(相对 于CELL背景) ##//
  193. cellStyle = wb.createCellStyle();
  194. cellStyle.setFillForegroundColor(IndexedColors.ORANGE.getIndex());
  195. // ## 设置填充模式为SOLID FOREGROUND ##//
  196. cellStyle.setFillPattern(CellStyle.SOLID_FOREGROUND);
  197. cell = row5.createCell((short) 2);
  198. cell.setCellValue("橙色前景色");
  199. cell.setCellStyle(cellStyle);
  200.  
  201. /** 第六行 --- 合并单元格 **/
  202. Row row6 = sheet.createRow((short) 5);
  203. cell = row6.createCell((short) 4);
  204. cell.setCellValue("合并单元格测试");
  205. // ## Wrong:EXCEL 2007中打开workbook.xls文件看不到"合并单元格测试",但单元格已经合并了 ##//
  206. /*
  207. * sheet.addMergedRegion(new CellRangeAddress( 3, //first row
  208. * (0-based) 5, //last row (0-based) 4, //first column (0-based) 6
  209. * //last column (0-based) ));
  210. */
  211. // ## 正确合并单元格 注意:与上不同的是first row=last row ##//
  212. sheet.addMergedRegion(new CellRangeAddress(5, // first row (0-based)
  213. 5, // last row (0-based)
  214. 4, // first column (0-based)
  215. 6// last column (0-based)
  216. ));
  217.  
  218. /** 第七行 --- 字体 **/
  219. Row row7 = sheet.createRow(6);
  220. // ## 创建字体 ##//
  221. // 注意:POI限制一个Workbook创建的Font对象最多为32767,所以不要为每个CELL创建一个字体,建议重用字体
  222. font = wb.createFont();
  223. // ## 设置字体大小为24 ##//
  224. font.setFontHeightInPoints((short) 24);
  225. // ## 设置字体样式为华文隶书 ##//
  226. font.setFontName("华文隶书");
  227. // ## 斜体 ##//
  228. font.setItalic(true);
  229. // ## 添加删除线 ##//
  230. font.setStrikeout(true);
  231. // ## 将字体添加到样式中 ##//
  232. cellStyle = wb.createCellStyle();
  233. cellStyle.setFont(font);
  234. cell = row7.createCell(1);
  235. cell.setCellValue("字体测试");
  236. cell.setCellStyle(cellStyle);
  237.  
  238. /** 第八行 --- 自定义颜色 **/
  239. Row row8 = sheet.createRow(7);
  240. cell = row8.createCell(0);
  241. cell.setCellValue("自定义颜色测试");
  242. cellStyle = wb.createCellStyle();
  243. // ## 设置填充前景色为LIME ##//
  244. cellStyle.setFillForegroundColor(HSSFColor.LIME.index);
  245. // ## 设置填充模式为SOLID FOREGROUND ##//
  246. cellStyle.setFillPattern(CellStyle.SOLID_FOREGROUND);
  247. font = wb.createFont();
  248. // ## 设置字体颜色为红色 ##//
  249. font.setColor(HSSFColor.RED.index);
  250. cellStyle.setFont(font);
  251. cell.setCellStyle(cellStyle);
  252.  
  253. /*
  254. * cell.setCellValue("自定义颜色测试Palette"); //creating a custom palette
  255. * for the workbook HSSFPalette palette =
  256. * ((HSSFWorkbook)wb).getCustomPalette(); //replacing the standard
  257. * red with freebsd.org red
  258. * palette.setColorAtIndex(HSSFColor.RED.index, (byte) 153, //RGB
  259. * red (0-255) (byte) 0, //RGB green (byte) 0 //RGB blue );
  260. * //replacing lime with freebsd.org gold
  261. * palette.setColorAtIndex(HSSFColor.LIME.index, (byte) 255, (byte)
  262. * 204, (byte) 102);
  263. */
  264.  
  265. /** 第九行 --- 换行 **/
  266. Row row9 = sheet.createRow(8);
  267. cell = row9.createCell(2);
  268. cell.setCellValue("使用 /n及Word-wrap创建一个新行");
  269. cellStyle = wb.createCellStyle();
  270. // ## 设置WrapText为true ##//
  271. cellStyle.setWrapText(true);
  272. cell.setCellStyle(cellStyle);
  273. // ## 设置行的高度以适应新行 ---两行##//
  274. row9.setHeightInPoints((2 * sheet.getDefaultRowHeightInPoints()));
  275. // ## 调整列宽 ##//
  276. sheet.autoSizeColumn(2);
  277.  
  278. /** 第十行 --- 数据格式 **/
  279. DataFormat format = wb.createDataFormat();
  280.  
  281. Row row10 = sheet.createRow(9);
  282. cell = row10.createCell(0);
  283. cell.setCellValue(11111.25);
  284. cellStyle = wb.createCellStyle();
  285. // ## 一位小数 ##//
  286. cellStyle.setDataFormat(format.getFormat("0.0"));
  287. cell.setCellStyle(cellStyle);
  288.  
  289. cell = row10.createCell(1);
  290. cell.setCellValue(11111.25);
  291. cellStyle = wb.createCellStyle();
  292. // ## 四位小数,千位逗号隔开 ##//
  293. // #,###.0000效果一样
  294. cellStyle.setDataFormat(format.getFormat("#,##0.0000"));
  295. cell.setCellStyle(cellStyle);
  296.  
  297. // ## 将文件写到硬盘上 ##//
  298. fileOut = new FileOutputStream(XLS_WORKBOOK_LOCATION);
  299. wb.write(fileOut);
  300. fileOut.close();
  301. } catch (FileNotFoundException e) {
  302. e.printStackTrace();
  303. } catch (IOException e) {
  304. e.printStackTrace();
  305. }
  306.  
  307. /**
  308. * EXCEL 2007及以后
  309. */
  310. /*
  311. * try { wb = new XSSFWorkbook(); wb.createSheet("sheet1"); Cell cell =
  312. * row.createCell( 0); cell.setCellValue("custom XSSF colors");
  313. * CellStyle style1 = wb.createCellStyle();
  314. * style1.setFillForegroundColor(new XSSFColor(new java.awt.Color(128,
  315. * 0, 128))); style1.setFillPattern(CellStyle.SOLID_FOREGROUND); fileOut
  316. * = new FileOutputStream("d:/workbook.xlsx"); wb.write(fileOut);
  317. * fileOut.close(); } catch (FileNotFoundException e) {
  318. * e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); }
  319. */
  320.  
  321. }
  322.  
  323. /**
  324. * 创建相应格式的CELL
  325. */
  326. public void createCell(Workbook wb, Row row, short column, short halign,
  327. short valign) {
  328. Cell cell = row.createCell(column);
  329. // ## 给CELL赋值 ##//
  330. cell.setCellValue("对齐排列");
  331. CellStyle cellStyle = wb.createCellStyle();
  332. // ## 设置水平对齐方式 ##//
  333. cellStyle.setAlignment(halign);
  334. // ## 设置垂直对齐方式 ##//
  335. cellStyle.setVerticalAlignment(valign);
  336. // ## 添加CELL样式 ##//
  337. cell.setCellStyle(cellStyle);
  338. }
  339.  
  340. /**
  341. * 测试POI EXCEL迭代和或CELL中的值
  342. */
  343. @Test
  344. public void testExcelIteratorAndCellContents() {
  345. try {
  346. // ## 创建HSSFWorkbook实例 ##//
  347. Workbook wb = new HSSFWorkbook(new FileInputStream(
  348. XLS_WORKBOOK_LOCATION));
  349. // ## 获得第一个SHEET ##//
  350. Sheet sheet = wb.getSheetAt(0); // or we could cast into
  351. // HSSFSheet,that doesn't matter
  352. /** 第一种迭代方法 **/
  353. /*
  354. * //## 迭代ROW ##// for (Iterator<Row> rit = sheet.rowIterator();
  355. * rit.hasNext(); ) { Row row = rit.next(); //## 迭代CELL ##// for
  356. * (Iterator<Cell> cit = row.cellIterator(); cit.hasNext(); ) { Cell
  357. * cell = cit.next(); System.out.println(cell); } }
  358. */
  359. /** 第二种迭代方法 **/
  360. for (Row row : sheet) {
  361. for (Cell cell : row) {
  362. // ## 获取CellReference对象 ##/
  363. CellReference cellRef = new CellReference(row.getRowNum(),
  364. cell.getColumnIndex());
  365. System.out.print(cellRef.formatAsString());
  366. System.out.print(" - ");
  367. // ## 根据CELL值类型进行相应处理 ##/
  368. switch (cell.getCellType()) {
  369. case Cell.CELL_TYPE_STRING:
  370. System.out.println(cell.getRichStringCellValue()
  371. .getString());
  372. break;
  373. case Cell.CELL_TYPE_NUMERIC:
  374. // ## yyyy年mm月dd日 hh:mm:ss此种格式日期不能识别 ##//
  375. // ## mm/dd/yyyy h:mm,yyyy-MM-dd
  376. // hh:mm:ss可以识别,估计是POI对中文日期支持不怎么好的问题 ##//
  377. if (DateUtil.isCellDateFormatted(cell)) {
  378. System.out.println(cell.getDateCellValue());
  379. } else {
  380. System.out.println(cell.getNumericCellValue());
  381. }
  382. break;
  383. case Cell.CELL_TYPE_BOOLEAN:
  384. System.out.println(cell.getBooleanCellValue());
  385. break;
  386. case Cell.CELL_TYPE_FORMULA:
  387. System.out.println(cell.getCellFormula());
  388. break;
  389. case Cell.CELL_TYPE_ERROR:
  390. System.out.println(cell.getErrorCellValue());
  391. break;
  392. default:
  393. System.out.println();
  394. }
  395. }
  396. }
  397.  
  398. } catch (FileNotFoundException e) {
  399. e.printStackTrace();
  400. } catch (IOException e) {
  401. e.printStackTrace();
  402. }
  403. }
  404.  
  405. /**
  406. * 修改文件测试
  407. */
  408. @Test
  409. public void testReadingAndRewritingWorkbooks() {
  410. InputStream inp = null;
  411. try {
  412. inp = new FileInputStream(XLS_WORKBOOK_LOCATION);
  413. // inp = new FileInputStream("workbook.xlsx");
  414. // ## 获得要修改的Workbook ##/
  415. Workbook wb = WorkbookFactory.create(inp);
  416. // ## 获取要修改的Sheet ##//
  417. Sheet sheet = wb.getSheetAt(0);
  418. // ## 获取要修改的Row ##//
  419. Row row = sheet.getRow(1);
  420. // ## 获取要修改的Cell,如果没有相应位置的Cell那么就创建一个 ##//
  421. Cell cell = row.getCell(2);
  422. if (cell == null)
  423. cell = row.createCell(2);
  424. // ## 写入修改数据 ##//
  425. cell.setCellType(Cell.CELL_TYPE_STRING);
  426. cell.setCellValue("修改文件测试");
  427.  
  428. // ## 将文件写到硬盘上 ##//
  429. FileOutputStream fileOut = new FileOutputStream(
  430. XLS_WORKBOOK_LOCATION);
  431. wb.write(fileOut);
  432. fileOut.close();
  433. } catch (FileNotFoundException e) {
  434. e.printStackTrace();
  435. } catch (InvalidFormatException e) {
  436. e.printStackTrace();
  437. } catch (IOException e) {
  438. e.printStackTrace();
  439. }
  440. }
  441.  
  442. /**
  443. * 暂时没看到有什么区别
  444. */
  445. @Test
  446. public void testFitSheetToOnePage() {
  447. try {
  448. Workbook wb = new HSSFWorkbook();
  449. Sheet sheet = wb.createSheet("format sheet");
  450. PrintSetup ps = sheet.getPrintSetup();
  451.  
  452. sheet.setAutobreaks(true);
  453.  
  454. ps.setFitHeight((short) 1);
  455. ps.setFitWidth((short) 1);
  456. // Create various cells and rows for spreadsheet.
  457. FileOutputStream fileOut = new FileOutputStream(
  458. XLS_WORKBOOK_LOCATION);
  459. wb.write(fileOut);
  460. fileOut.close();
  461. } catch (Exception e) {
  462. e.printStackTrace();
  463. }
  464. }
  465.  
  466. /**
  467. * 设置打印区域测试
  468. */
  469. @Test
  470. public void testSetPrintArea() {
  471. /**
  472. * 注意:我测试的时候用的是EXCEL 2007打开的,效果不明显,只能控制列且列好像也是不正确的。 但是我用EXCEL
  473. * 2007转换了一下,xls,xlsx的都正确了,目前还不知道是什么问题。
  474. */
  475. try {
  476. Workbook wb = new HSSFWorkbook();
  477. Sheet sheet = wb.createSheet("Print Area Sheet");
  478. Row row = sheet.createRow(0);
  479. row.createCell(0).setCellValue("第一个单元格");
  480. row.createCell(1).setCellValue("第二个单元格");
  481. row.createCell(2).setCellValue("第三个单元格");
  482. row = sheet.createRow(1);
  483. row.createCell(0).setCellValue("第四个单元格");
  484. row.createCell(1).setCellValue("第五个单元格");
  485. row = sheet.createRow(2);
  486. row.createCell(0).setCellValue("第六个单元格");
  487. row.createCell(1).setCellValue("第七个单元格");
  488. // ## 设置打印区域 A1--C2 ##//
  489. // wb.setPrintArea(0, "$A$1:$C$2");
  490. // ## 或者使用以下方法设置 ##//
  491. wb.setPrintArea(0, // Sheet页
  492. 0, // 开始列
  493. 2, // 结束列
  494. 0, // 开始行
  495. 1// 结束行
  496. );
  497.  
  498. FileOutputStream fileOut = new FileOutputStream(
  499. XLS_WORKBOOK_LOCATION);
  500. wb.write(fileOut);
  501. fileOut.close();
  502. } catch (FileNotFoundException e) {
  503. e.printStackTrace();
  504. } catch (IOException e) {
  505. e.printStackTrace();
  506. }
  507.  
  508. }
  509.  
  510. /**
  511. * 设置页脚测试 用“页面布局”可以看到效果 下列代码只适用xls
  512. */
  513. @Test
  514. public void testSetPageNumbersOnFooter() {
  515. try {
  516. HSSFWorkbook wb = new HSSFWorkbook();
  517. HSSFSheet sheet = wb.createSheet("Footer Test");
  518. // ## 获得页脚 ##/
  519. HSSFFooter footer = sheet.getFooter();
  520. Row row;
  521. // ## 将 当前页/总页数 写在右边 ##/
  522. footer.setRight(HSSFFooter.page() + "/" + HSSFFooter.numPages());
  523. for (int i = 0; i < 100; i++) {
  524. row = sheet.createRow(i);
  525. for (int j = 0; j < 20; j++) {
  526. row.createCell(j).setCellValue("A" + i + j);
  527. }
  528. }
  529. FileOutputStream fileOut = new FileOutputStream(
  530. XLS_WORKBOOK_LOCATION);
  531. wb.write(fileOut);
  532. fileOut.close();
  533. } catch (FileNotFoundException e) {
  534. e.printStackTrace();
  535. } catch (IOException e) {
  536. e.printStackTrace();
  537. }
  538.  
  539. }
  540.  
  541. /**
  542. * 测试一些POI提供的比较方便的函数 文档中有些以HSSF为前缀的类的方法以过时(e.g: HSSFSheet, HSSFCell etc.),
  543. * 测试的时候我去掉了HSSF前缀,当然也就是现在POI推荐的接口(Sheet,Row,Cell etc.)
  544. */
  545. @Test
  546. public void testConvenienceFunctions() {
  547. try {
  548. Workbook wb = new HSSFWorkbook();
  549. Sheet sheet1 = wb.createSheet("Convenience Functions");
  550. // ## 设置Sheet的显示比例 这里是3/4,也就是 75% ##//
  551. sheet1.setZoom(3, 4);
  552. // ## 合并单元格 ##//
  553. Row row = sheet1.createRow((short) 1);
  554. Row row2 = sheet1.createRow((short) 2);
  555. Cell cell = row.createCell((short) 1);
  556. cell.setCellValue("合并单元格测试");
  557. // ## 创建合并区域 ##//
  558. CellRangeAddress region = new CellRangeAddress(1, (short) 1, 4,
  559. (short) 4);
  560. sheet1.addMergedRegion(region);
  561.  
  562. // ## 设置边框及边框颜色 ##//
  563. final short borderMediumDashed = CellStyle.BORDER_MEDIUM_DASHED;
  564. RegionUtil.setBorderBottom(borderMediumDashed, region, sheet1, wb);
  565. RegionUtil.setBorderTop(borderMediumDashed, region, sheet1, wb);
  566. RegionUtil.setBorderLeft(borderMediumDashed, region, sheet1, wb);
  567. RegionUtil.setBorderRight(borderMediumDashed, region, sheet1, wb);
  568. // ## 设置底部边框的颜色 ##//
  569. RegionUtil.setBottomBorderColor(HSSFColor.AQUA.index, region,
  570. sheet1, wb);
  571. // ## 设置顶部边框的颜色 ##//
  572. RegionUtil.setTopBorderColor(HSSFColor.AQUA.index, region, sheet1,
  573. wb);
  574. // ## 设置左边边框的颜色 ##//
  575. RegionUtil.setLeftBorderColor(HSSFColor.AQUA.index, region, sheet1,
  576. wb);
  577. // ## 设置右边边框的颜色 ##//
  578. RegionUtil.setRightBorderColor(HSSFColor.AQUA.index, region,
  579. sheet1, wb);
  580.  
  581. // ## CellUtil的一些用法 ##/
  582. CellStyle style = wb.createCellStyle();
  583. style.setIndention((short) 10);
  584. CellUtil.createCell(row, 8, "CellUtil测试", style);
  585. Cell cell2 = CellUtil.createCell(row2, 8, "CellUtil测试");
  586. // ## 设置对齐方式为居中对齐 ##//
  587. CellUtil.setAlignment(cell2, wb, CellStyle.ALIGN_CENTER);
  588.  
  589. // ## 将Workbook写到硬盘上 ##//
  590. FileOutputStream fileOut = new FileOutputStream(
  591. XLS_WORKBOOK_LOCATION);
  592. wb.write(fileOut);
  593. fileOut.close();
  594. } catch (FileNotFoundException e) {
  595. e.printStackTrace();
  596. } catch (IOException e) {
  597. e.printStackTrace();
  598. }
  599. }
  600.  
  601. /**
  602. * 测试冻结窗格和拆分
  603. */
  604. @Test
  605. public void testSplitAndFreezePanes() {
  606. try {
  607. Workbook wb = new HSSFWorkbook();
  608. Sheet sheet1 = wb.createSheet("冻结首行Sheet");
  609. Sheet sheet2 = wb.createSheet("冻结首列Sheet");
  610. Sheet sheet3 = wb.createSheet("冻结两行两列 Sheet");
  611. Sheet sheet4 = wb.createSheet("拆分Sheet");
  612.  
  613. /** 冻结窗格 **/
  614. /*
  615. * createFreezePane( colSplit, rowSplit, topRow, leftmostColumn )
  616. * colSplit 冻结线水平位置 rowSplit 冻结线垂直位置 topRow Top row visible in
  617. * bottom pane leftmostColumn Left column visible in right pane.
  618. */
  619. // ## 冻结首行 ##//
  620. sheet1.createFreezePane(0, 1, 0, 1);
  621. // ## 冻结首列 ##//
  622. sheet2.createFreezePane(1, 0, 1, 0);
  623. // ## 冻结两行两列 ##//
  624. sheet3.createFreezePane(2, 2);
  625. // ## 拆分,左下的为面板为激活状态 ##//
  626. sheet4.createSplitPane(2000, 2000, 0, 0, Sheet.PANE_LOWER_LEFT);
  627.  
  628. FileOutputStream fileOut = new FileOutputStream(
  629. XLS_WORKBOOK_LOCATION);
  630. wb.write(fileOut);
  631. fileOut.close();
  632. } catch (FileNotFoundException e) {
  633. e.printStackTrace();
  634. } catch (IOException e) {
  635. e.printStackTrace();
  636. }
  637. }
  638.  
  639. /**
  640. * 测试简单图形
  641. */
  642. @Test
  643. public void testDrawingShapes() {
  644. try {
  645. Workbook wb = new HSSFWorkbook();
  646. Sheet sheet = wb.createSheet("Drawing Shapes");
  647. // ## 得到一个HSSFPatriarch对象,有点像画笔但是注意区别 ##//
  648. HSSFPatriarch patriarch = (HSSFPatriarch) sheet
  649. .createDrawingPatriarch();
  650. /*
  651. * 构造器: HSSFClientAnchor(int dx1, int dy1, int dx2, int dy2, short
  652. * col1, int row1, short col2, int row2) 描述:
  653. * 创建HSSFClientAnchor类的实例,设置该anchor的顶-左和底-右坐标(相当于锚点,也就是图像出现的位置,大小等).
  654. * Creates a new client anchor and sets the top-left and
  655. * bottom-right coordinates of the anchor. 参数: dx1 第一个单元格的x坐标 dy1
  656. * 第一个单元格的y坐标 dx2 第二个单元格的x坐标 dy2 第二个单元格的y坐标 col1 第一个单元格所在列 row1
  657. * 第一个单元格所在行 col2 第二个单元格所在列 row2 第二个单元格所在行
  658. */
  659. HSSFClientAnchor anchor = new HSSFClientAnchor(0, 0, 512, 255,
  660. (short) 1, 0, (short) 1, 0);
  661. // ## 通过HSSFClientAnchor类的对象创建HSSFSimpleShape的实例 ##//
  662. HSSFSimpleShape shape = patriarch.createSimpleShape(anchor);
  663. // ## 画个椭圆 ##//
  664. shape.setShapeType(HSSFSimpleShape.OBJECT_TYPE_OVAL);
  665.  
  666. // ## 这几个是没问题的 ##//
  667. // shape.setLineStyleColor(10,10,10);
  668. // shape.setFillColor(90,10,200);
  669. // shape.setLineStyleColor(HSSFColor.BLUE.index); //设置不了,尚不知原因
  670. // ## 设置线条颜色为红色 ##//
  671. // shape.setLineStyleColor(Color.BLUE.getRGB()); //搞不清楚为什是反的BLUE:红色
  672. // RED:蓝色,是不是开发POI的有点色盲,JUST KIDDING!
  673. // ## 设置填充颜色为灰色 ##//
  674. shape.setFillColor(Color.GRAY.getRGB()); // 这个又可以
  675. // ## 设置线条宽度为3pt ##//
  676. shape.setLineWidth(HSSFShape.LINEWIDTH_ONE_PT * 3);
  677. // ## 设置线条的样式为点式 ##//
  678. shape.setLineStyle(HSSFShape.LINESTYLE_DOTSYS);
  679.  
  680. // ## 创建文本框并填充文字 “创建文本框” ##//
  681. HSSFTextbox textbox = patriarch.createTextbox(new HSSFClientAnchor(
  682. 0, 0, 0, 0, (short) 1, 1, (short) 2, 2));
  683. RichTextString text = new HSSFRichTextString("创建文本框");
  684. // ## 创建字体 ##//
  685. Font font = wb.createFont();
  686. // ## 斜体 ##//
  687. font.setItalic(true);
  688. // ## 设置字体颜色为蓝色 ##//
  689. // font.setColor((short)Color.BLUE.getBlue()); not work
  690. font.setColor(HSSFColor.BLUE.index);
  691. // ## 添加字体 ##//
  692. text.applyFont(font);
  693. textbox.setString(text);
  694.  
  695. // ## 将文件写到硬盘上 ##//
  696. FileOutputStream fileOut = new FileOutputStream(
  697. XLS_WORKBOOK_LOCATION);
  698. wb.write(fileOut);
  699. fileOut.close();
  700. } catch (FileNotFoundException e) {
  701. e.printStackTrace();
  702. } catch (IOException e) {
  703. e.printStackTrace();
  704. }
  705. }
  706.  
  707. /**
  708. * 添加图片到工作薄测试 已测试PNG,JPG,GIF
  709. */
  710. @Test
  711. public void testImages() {
  712. try {
  713. // ## 创建一个新的工作薄 ##//
  714. Workbook wb = new XSSFWorkbook(); // or new HSSFWorkbook();
  715.  
  716. // ## 添加图片到该工作薄 ##//
  717. InputStream is = new FileInputStream(IMAGE_LOCATION);
  718. byte[] bytes = IOUtils.toByteArray(is);
  719. int pictureIdx = wb.addPicture(bytes, Workbook.PICTURE_TYPE_JPEG);
  720. is.close();
  721.  
  722. CreationHelper helper = wb.getCreationHelper();
  723.  
  724. // ## 创建一个名为“添加图片”的Sheet ##//
  725. Sheet sheet = wb.createSheet("添加图片");
  726.  
  727. // ## 创建一个DrawingPatriarch实例 ##//
  728. Drawing drawing = sheet.createDrawingPatriarch();
  729.  
  730. // ## 设置图片的形状,位置等 ##//
  731. ClientAnchor anchor = helper.createClientAnchor();
  732. // set top-left corner of the picture,
  733. // subsequent call of Picture#resize() will operate relative to it
  734. anchor.setCol1(3);
  735. anchor.setRow1(2);
  736. Picture pict = drawing.createPicture(anchor, pictureIdx);
  737. // ## 自动设置图片的大小 注意:只支持PNG,JPG,GIF(BMP未测试)##//
  738. pict.resize();
  739.  
  740. // ## 保存Workbook ##//
  741. String file = "picture.xls";
  742. if (wb instanceof XSSFWorkbook)
  743. file += "x";
  744. FileOutputStream fileOut = new FileOutputStream(XLS_OR_XLSX_DIR
  745. + file);
  746. wb.write(fileOut);
  747. fileOut.close();
  748. } catch (FileNotFoundException e) {
  749. e.printStackTrace();
  750. } catch (IOException e) {
  751. e.printStackTrace();
  752. }
  753.  
  754. }
  755. }

  

  

(转)poi操作Excel, 各种具体操作和解释的更多相关文章

  1. POI对Excel的操作

    1. 先导包 commons-io-2.6.jar包,用于对文件的操作. 下载地址:http://commons.apache.org/proper/commons-io/download_io.cg ...

  2. Delphi操作Excel大全

    Delphi操作Excel大全 DELPHI操作excel(转)(一) 使用动态创建的方法 首先创建 Excel 对象,使用ComObj:var ExcelApp: Variant;ExcelApp ...

  3. C#操作Excel文件(转)

    摘要:本文介绍了Excel对象.C#中的受管代码和非受管代码,并介绍了COM组件在.net环境中的使用. 关键词:受管代码:非受管代码:Excel对象:动态连接库 引言 Excel是微软公司办公自动化 ...

  4. python基础(六)python操作excel

    一.python操作excel,python操作excel使用xlrd.xlwt和xlutils模块,xlrd模块是读取excel的,xlwt模块是写excel的,xlutils是用来修改excel的 ...

  5. python学习笔记(八)python操作Excel

    一.python操作excel,python操作excel使用xlrd.xlwt和xlutils模块,xlrd模块是读取excel的,xlwt模块是写excel的,xlutils是用来修改excel的 ...

  6. C++之操作Excel(抄录https://www.cnblogs.com/For-her/p/3499782.html)

    MFC操作Excel 下面的操作基于Excel2003 一.初始化操作 1.导入类库 点击查看->建立类向导-> Add Class...\From a type Library...-& ...

  7. python学习笔记(十):操作excel

    一.python操作excel,python操作excel使用xlrd.xlwt和xlutils模块,xlrd模块是读取excel的,xlwt模块是写excel的,xlutils是用来修改excel的 ...

  8. Python之操作Excel、异常处理、网络编程

    知识补充: 1.falsk模块中一些方法总结 import flask from flask import request,jsonify server = flask.Flask(__name__) ...

  9. python-笔记(操作excel)

    python操作excel,python操作excel使用xlrd.xlwt和xlutils模块,xlrd模块是读取excel的,xlwt模块是写excel的,xlutils是用来修改excel的.这 ...

  10. POI操作Excel

    POI和Excel简介 JAVA中操作Excel的有两种比较主流的工具包: JXL 和 POI .jxl 只能操作Excel 95, 97, 2000也即以.xls为后缀的excel.而poi可以操作 ...

随机推荐

  1. 【Flutter学习】基本组件之图片组件Image

    一,概述 Image(图片组件)是显示图像的组件,一个显示图片的widget,支持图像格式:JPEG,PNG,GIF,动画GIF,WebP,动画WebP,BMP和WBMP. Image组件有多种构造函 ...

  2. ubuntu终端仿真程序和文件管理程序

    1.SecureCRT是一款支持SSH(SSH1和SSH2)的终端仿真程序,简单的说是Windows下登录UNIX或Linux服务器主机的软件.可以理解为ubuntu下的Terminal. 如果Sec ...

  3. Wannafly Winter Camp Day8(Div1,onsite) E题 Souls-like Game 线段树 矩阵乘法

    目录 Catalog Solution: (有任何问题欢迎留言或私聊 && 欢迎交流讨论哦 Catalog @ Problem:传送门  Portal  原题目描述在最下面.  简单的 ...

  4. unittest框架学习笔记一之testcase

    # coding=utf-8案例一: 2 ''' 3 Created on 2017-7-22 4 @author: Jennifer 5 Project:登录百度测试用例 6 ''' 7 from ...

  5. RabbitMQ使用(二)

    1.消息确认消费 1. 生产者端发消息时,加参数 properties=pika.BasicProperties( delivery_mode=2, # make message persistent ...

  6. git分布式版本控制系统权威指南学习笔记(六):git reset、get stash、git checkout总结

    文章目录 1. 概述 2. 如何把修改暂存起来,留着以后使用? 2.1 使用场景 2.2 git stash 暂存进度 2.3 查看进度 2.4 恢复进度 3. 如何撤销工作区的修改? 4. 如何把暂 ...

  7. 【Stanford Machine Learning Open Course】学习笔记目录

    这里是斯坦福大学机器学习网络课程的学习笔记. 课程地址是:https://class.coursera.org/ml-2012-002/lecture/index 课程资料百度网盘分享链接:https ...

  8. Java目录事件

    当文件系统中的对象被修改时,我们可以监听watch服务以获取警报.java.nio.file包中的以下类和接口提供watch服务. Watchable接口 WatchService接口 WatchKe ...

  9. java-day20

    注解:说明程序的,给计算机看的 注释:用文字描述程序的,给程序员看的 定义:注解(Annotation),也叫元数据.一种代码级别的说明.它是JDK1.5及以后版本引入的一个特性.与类.接口.枚举是在 ...

  10. js模块化的历史

    了解模块化开发的历史,可以帮助我们理解 模块化开发的形式是怎么样的,对我们深入学习模块化开发会有很大的帮助: 一.服务器端JS的模块化 nodeJS的出现   ------官网: http://nod ...