如何用Apache POI操作Excel文件-----如何对一个单元格加注解?

有的时候,我们需要通过操作Apache POI,在生成Cell数据的同时,能对其生成的Cell,加上注解(comments),类似于下面的。

如何用Apache POI操作Excel文件-----如何对一个单元格加注解?

那么对于这种情况,我们的代码应该如何写呢? 借花献佛,我就用Apache POI官方提供的例子,然后加上一些注解,给大家看一下。本例子的测试代码是基于POI-3.12的。

执行完后,将会生成上图所示的Excel工作表单(sheet)

  1. import org.apache.poi.ss.usermodel.*;
  2. import org.apache.poi.xssf.usermodel.XSSFSheet;
  3. import org.apache.poi.xssf.usermodel.XSSFWorkbook;
  4. import java.io.IOException;
  5. import java.io.FileOutputStream;
  6. /**
  7. * Demonstrates how to work with excel cell comments.
  8. * <p>
  9. * Excel comment is a kind of a text shape,
  10. * so inserting a comment is very similar to placing a text box in a worksheet
  11. * </p>
  12. *
  13. * @author Yegor Kozlov
  14. */
  15. public class CellComments {
  16. public static void main(String[] args) throws IOException {
  17. //1.创建一个工作簿对象
  18. XSSFWorkbook wb = new XSSFWorkbook();
  19. //2.得到一个POI的工具类
  20. CreationHelper factory = wb.getCreationHelper();
  21. //3. 创建一个工作表
  22. XSSFSheet sheet = wb.createSheet();
  23. //4.得到一个换图的对象
  24. Drawing drawing = sheet.createDrawingPatriarch();
  25. //5. ClientAnchor是附属在WorkSheet上的一个对象,  其固定在一个单元格的左上角和右下角.
  26. ClientAnchor anchor = factory.createClientAnchor();
  27. //6. 创建一个单元格(2A单元格)
  28. Cell cell0 = sheet.createRow(1).createCell(0);
  29. //6.1. 对这个单元格设置值
  30. cell0.setCellValue("Test");
  31. //6.2. 对这个单元格加上注解
  32. Comment comment0 = drawing.createCellComment(anchor);
  33. RichTextString str0 = factory.createRichTextString("Hello, World!");
  34. comment0.setString(str0);
  35. comment0.setAuthor("Apache POI");
  36. cell0.setCellComment(comment0);
  37. //7. 创建一个单元格(4F单元格)
  38. Cell cell1 = sheet.createRow(3).createCell(5);
  39. //7.1. 对这个单元格设置值
  40. cell1.setCellValue("F4");
  41. //7.2. 对这个单元格加上注解
  42. Comment comment1 = drawing.createCellComment(anchor);
  43. RichTextString str1 = factory.createRichTextString("Hello, World!");
  44. comment1.setString(str1);
  45. comment1.setAuthor("Apache POI");
  46. cell1.setCellComment(comment1);
  47. //8. 创建一个单元格(4F单元格)
  48. Cell cell2 = sheet.createRow(2).createCell(2);
  49. cell2.setCellValue("C3");
  50. Comment comment2 = drawing.createCellComment(anchor);
  51. RichTextString str2 = factory.createRichTextString("XSSF can set cell comments");
  52. //9。为注解设置字体
  53. Font font = wb.createFont();
  54. font.setFontName("Arial");
  55. font.setFontHeightInPoints((short)14);
  56. font.setBoldweight(Font.BOLDWEIGHT_BOLD);
  57. font.setColor(IndexedColors.RED.getIndex());
  58. str2.applyFont(font);
  59. comment2.setString(str2);
  60. comment2.setAuthor("Apache POI");
  61. comment2.setColumn(2);
  62. comment2.setRow(2);
  63. //10. 保存成Excel文件
  64. String fname = "comments.xlsx";
  65. FileOutputStream out = new FileOutputStream(fname);
  66. wb.write(out);
  67. out.close();
  68. }
  69. }
上一篇:深入学习SpringMVC以及学习总结


下一篇:IDEA常用快捷键