如何用Apache POI操作Excel文件-----如何用Apache POI 画一个离散图

有的时候,我们需要Excel中的数据,通过一个图画,可视化的表现出来。 那么这个时候,应该如何做呢?现在就借花献佛,以Apache POI自己提供的一个例子为例,给大家演示一下POI的API 如何画图的。下面是一个最终的效果图。然后分别给大家解释每段代码的作用和意义。

代码如下,

[java] view plain copy

  1. import java.io.FileOutputStream;
  2. import org.apache.poi.ss.usermodel.*;
  3. import org.apache.poi.ss.util.*;
  4. import org.apache.poi.ss.usermodel.charts.*;
  5. import org.apache.poi.xssf.usermodel.XSSFWorkbook;
  6. /**
  7. * Illustrates how to create a simple scatter chart.
  8. *
  9. * @author Roman Kashitsyn
  10. */
  11. public class ScatterChart {
  12. public static void main(String[] args) throws Exception {
  13. Workbook wb = new XSSFWorkbook();
  14. Sheet sheet = wb.createSheet("Sheet 1");
  15. final int NUM_OF_ROWS = 3;
  16. final int NUM_OF_COLUMNS = 10;
  17. // Create a row and put some cells in it. Rows are 0 based.
  18. Row row;
  19. Cell cell;
  20. for (int rowIndex = 0; rowIndex < NUM_OF_ROWS; rowIndex++) {
  21. row = sheet.createRow((short) rowIndex);
  22. for (int colIndex = 0; colIndex < NUM_OF_COLUMNS; colIndex++) {
  23. cell = row.createCell((short) colIndex);
  24. cell.setCellValue(colIndex * (rowIndex + 1));
  25. }
  26. }
  27. Drawing drawing = sheet.createDrawingPatriarch();
  28. ClientAnchor anchor = drawing.createAnchor(0, 0, 0, 0, 0, 5, 10, 15);
  29. Chart chart = drawing.createChart(anchor);
  30. ChartLegend legend = chart.getOrCreateLegend();
  31. legend.setPosition(LegendPosition.TOP_RIGHT);
  32. ScatterChartData data = chart.getChartDataFactory().createScatterChartData();
  33. ValueAxis bottomAxis = chart.getChartAxisFactory().createValueAxis(AxisPosition.BOTTOM);
  34. ValueAxis leftAxis = chart.getChartAxisFactory().createValueAxis(AxisPosition.LEFT);
  35. leftAxis.setCrosses(AxisCrosses.AUTO_ZERO);
  36. ChartDataSource<Number> xs = DataSources.fromNumericCellRange(sheet, new CellRangeAddress(0, 0, 0, NUM_OF_COLUMNS - 1));
  37. ChartDataSource<Number> ys1 = DataSources.fromNumericCellRange(sheet, new CellRangeAddress(1, 1, 0, NUM_OF_COLUMNS - 1));
  38. ChartDataSource<Number> ys2 = DataSources.fromNumericCellRange(sheet, new CellRangeAddress(2, 2, 0, NUM_OF_COLUMNS - 1));
  39. data.addSerie(xs, ys1);
  40. data.addSerie(xs, ys2);
  41. chart.plot(data, bottomAxis, leftAxis);
  42. // Write the output to a file
  43. FileOutputStream fileOut = new FileOutputStream("ooxml-scatter-chart.xlsx");
  44. wb.write(fileOut);
  45. fileOut.close();
  46. }
  47. }

下面逐一来分解:

1.下面的代码新建一个工作簿和工作表单的对象

[java] view plain copy

  1. Workbook wb = new XSSFWorkbook();
  2. Sheet sheet = wb.createSheet("Sheet 1");

2.下面这段代码是用生成初始化数据的,总共的数据有3行10列。

[java] view plain copy

  1. final int NUM_OF_ROWS = 3;
  2. final int NUM_OF_COLUMNS = 10;
  3. // Create a row and put some cells in it. Rows are 0 based.
  4. Row row;
  5. Cell cell;
  6. for (int rowIndex = 0; rowIndex < NUM_OF_ROWS; rowIndex++) {
  7. row = sheet.createRow((short) rowIndex);
  8. for (int colIndex = 0; colIndex < NUM_OF_COLUMNS; colIndex++) {
  9. cell = row.createCell((short) colIndex);
  10. cell.setCellValue(colIndex * (rowIndex + 1));
  11. }
  12. }

3. 下面这段代码设置了画图的区域:从第5行开始,到15行结束;总共占用10列

[java] view plain copy

  1. Drawing drawing = sheet.createDrawingPatriarch();
  2. ClientAnchor anchor = drawing.createAnchor(0, 0, 0, 0, 0, 5, 10, 15);

4.创建一个离散图的坐标系

[java] view plain copy

  1. Chart chart = drawing.createChart(anchor);
  2. ChartLegend legend = chart.getOrCreateLegend();
  3. legend.setPosition(LegendPosition.TOP_RIGHT);
  4. ScatterChartData data = chart.getChartDataFactory().createScatterChartData();
  5. ValueAxis bottomAxis = chart.getChartAxisFactory().createValueAxis(AxisPosition.BOTTOM);
  6. ValueAxis leftAxis = chart.getChartAxisFactory().createValueAxis(AxisPosition.LEFT);
  7. leftAxis.setCrosses(AxisCrosses.AUTO_ZERO);

5.往离散图上填充数据

[java] view plain copy

  1. ChartDataSource<Number> xs = DataSources.fromNumericCellRange(sheet, new CellRangeAddress(0, 0, 0, NUM_OF_COLUMNS - 1));
  2. ChartDataSource<Number> ys1 = DataSources.fromNumericCellRange(sheet, new CellRangeAddress(1, 1, 0, NUM_OF_COLUMNS - 1));
  3. ChartDataSource<Number> ys2 = DataSources.fromNumericCellRange(sheet, new CellRangeAddress(2, 2, 0, NUM_OF_COLUMNS - 1));
  4. data.addSerie(xs, ys1);
  5. data.addSerie(xs, ys2);

其中,下面的方法定义

[java] view plain copy

  1. DataSources.fromNumericCellRange(sheet, new CellRangeAddress(0, 0, 0, NUM_OF_COLUMNS - 1));

如下,

[java] view plain copy

  1. public static ChartDataSource<Number> fromNumericCellRange(Sheet sheet, CellRangeAddress cellRangeAddress)

从上面可以看出,其实填充数据的关键方法是,

[java] view plain copy

  1. <pre name="code" class="java">new CellRangeAddress(0, 0, 0, NUM_OF_COLUMNS - 1)

那么这个方式是如何定义的呢?

[java] view plain copy

  1. public CellRangeAddress(int firstRow, int lastRow, int firstCol, int lastCol)

从上面可以看出,其让我们制定数据是从那一行开始的,那一行结束的,那一列开始的,那一列结束。

在上面的代码的5句话中,分别把第1行的1到10列做为基准,然后把第2行的1到10列做一个比较,画出曲线系列1

把第1行的1到10列做为基准,然后把第3行的1到10列做一个比较,画出曲线系列2

6. 开始画图

[java] view plain copy

  1. chart.plot(data, bottomAxis, leftAxis);

7. 保存成一个Excel文件

[java] view plain copy

    1. FileOutputStream fileOut = new FileOutputStream("ooxml-scatter-chart.xlsx");
    2. wb.write(fileOut);
    3. fileOut.close();
时间: 2024-10-14 19:11:50

如何用Apache POI操作Excel文件-----如何用Apache POI 画一个离散图的相关文章

(7) 如何用Apache POI操作Excel文件-----如何用Apache POI 画一个离散图

有的时候,我们需要Excel中的数据,通过一个图画,可视化的表现出来. 那么这个时候,应该如何做呢?现在就借花献佛,以Apache POI自己提供的一个例子为例,给大家演示一下POI的API 如何画图的.下面是一个最终的效果图.然后分别给大家解释每段代码的作用和意义. 代码如下, import java.io.FileOutputStream; import org.apache.poi.ss.usermodel.*; import org.apache.poi.ss.util.*; impor

(5) 如何用Apache POI操作Excel文件-----发现Apache的POI的Bug后,如何给Apache的POI报Bug?

在我上篇文章中,(4) 如何用Apache POI操作Excel文件-----发现了POI-3.12一个回归,通过测试POI-3.12的版本,我发现了一个bug,那么发现bug后,该如何处理.我们有2种处理方式,首先我们到Apache POI的bug库里面搜索,看别人有没有创建类似的bug,如果有创建的,这个是最好的结果,我们只需要关注这个bug什么时候被修复.如果没有搜索不到,这个时候我们就需要给Apache POI报bug了.那么,如何给Apache报Bug? 第一步: 打开https://

java使用POI操作excel文件,实现批量导出,和导入

一.POI的定义 JAVA中操作Excel的有两种比较主流的工具包: JXL 和 POI .jxl 只能操作Excel 95, 97, 2000也即以.xls为后缀的excel.而poi可以操作Excel 95及以后的版本,即可操作后缀为 .xls 和 .xlsx两种格式的excel. POI全称 Poor Obfuscation Implementation,直译为"可怜的模糊实现",利用POI接口可以通过JAVA操作Microsoft office 套件工具的读写功能.官网:htt

java使用Apache POI操作excel文件

官方介绍 HSSF is the POI Project's pure Java implementation of the Excel '97(-2007) file format. XSSF is the POI Project's pure Java implementation of the Excel 2007 OOXML (.xlsx) file format. 从官方文档中了解到:POI提供的HSSF包用于操作 Excel '97(-2007)的.xls文件,而XSSF包则用于操作

(1) 如何用Apache POI操作Excel文件-----入门

Apache POI项目的目标就是可以用Java API来创建和维护各种Office文件(MS Word,MS PowerPoint和MS Excel). 本系列文章主要是针对Excel文件的操作.对于Excel的操作,Apache POI提供两种模型:HSSF和XSSF. 其区别,请参考下面的图1.截止到2015年5月28日,当前的最新版本是3.12. 具体信息,我们可以访问其官方网站:http://poi.apache.org/ 1.下面是用Apache POI创建一个工作薄的基本的代码 i

(2) 如何用Apache POI操作Excel文件-----如何在已有的Excel文件中插入一行新的数据?

在POI的第一节入门中,我们提供了两个简单的例子,一个是如何用Apache POI新建一个工作薄,另外一个例子是,如果用Apache POI新建一个工作表.那么在这个章节里面,我将会给大家演示一下,如何用Apache POI在已有的Excel文件中插入一行新的数据.具体代码,请看下面的例子. import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.

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

有的时候,我们需要通过操作Apache POI,在生成Cell数据的同时,能对其生成的Cell,加上注解(comments),类似于下面的. 那么对于这种情况,我们的代码应该如何写呢? 借花献佛,我就用Apache POI官方提供的例子,然后加上一些注解,给大家看一下.本例子的测试代码是基于POI-3.12的. 执行完后,将会生成上图所示的Excel工作表单(sheet) [java] view plain copy import org.apache.poi.ss.usermodel.*; i

如何用Apache POI操作Excel文件-----如何在已有的Excel文件中插入一行新的数据?

在POI的第一节入门中,我们提供了两个简单的例子,一个是如何用Apache POI新建一个工作薄,另外一个例子是,如果用Apache POI新建一个工作表.那么在这个章节里面,我将会给大家演示一下,如何用Apache POI在已有的Excel文件中插入一行新的数据.具体代码,请看下面的例子. [java] view plain copy import java.io.File; import java.io.FileInputStream; import java.io.FileNotFound

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

有的时候,我们需要通过操作Apache POI,在生成Cell数据的同时,能对其生成的Cell,加上注解(comments),类似于下面的. 那么对于这种情况,我们的代码应该如何写呢? 借花献佛,我就用Apache POI官方提供的例子,然后加上一些注解,给大家看一下.本例子的测试代码是基于POI-3.12的. 执行完后,将会生成上图所示的Excel工作表单(sheet) import org.apache.poi.ss.usermodel.*; import org.apache.poi.xs