使用 Java 和 Apache POI 创建 Excel 折线图

本教程将指导您使用 Java 和 Apache POI 库创建一个包含多个数据系列的 Excel 折线图。

1. 项目设置

确保您的项目中包含以下依赖项。如果您使用 Maven,请将以下内容添加到您的 pom.xml 文件中:

<dependency>
  <groupId>org.apache.poi</groupId>
  <artifactId>poi</artifactId>
  <version>5.2.2</version>
</dependency>
<dependency>
  <groupId>org.apache.poi</groupId>
  <artifactId>poi-ooxml</artifactId>
  <version>5.2.2</version>
</dependency>

2. Java 代码

以下代码展示了如何创建一个包含两个数据系列、日期坐标轴和自定义样式的 Excel 折线图:

import org.apache.poi.ss.usermodel.*;
import org.apache.poi.ss.util.CellRangeAddress;
import org.apache.poi.xddf.usermodel.chart.*;
import org.apache.poi.xssf.usermodel.*;
import org.openxmlformats.schemas.drawingml.x2006.chart.CTBoolean;
import org.openxmlformats.schemas.drawingml.x2006.chart.CTLineSer;

import java.io.*;
import java.text.SimpleDateFormat;
import java.util.Date;

public class ExcelChartExample04 {

    public static void main(String[] args) {
        try {
            // 读取Excel文件
            FileInputStream fileIn = new FileInputStream('input-1.xlsx');
            XSSFWorkbook workbook = new XSSFWorkbook(fileIn);
            XSSFSheet sheet1 = workbook.getSheet('P1');

            // 创建折线图
            XSSFDrawing drawing = sheet1.createDrawingPatriarch();
            XSSFClientAnchor anchor = drawing.createAnchor(0, 0, 0, 0, 0, 129, 10, 149);
            XDDFChart chart = drawing.createChart(anchor);
            chart.setTitleText('数据折线图');
            chart.setTitleOverlay(false);

            // 设置图例位置
            XDDFChartLegend legend = chart.getOrAddLegend();
            legend.setPosition(LegendPosition.BOTTOM);

            // 设置横坐标轴为日期坐标轴
            XDDFDataSource<?> dateSource = XDDFDataSourcesFactory.fromArray(new String[] {'A2:A127'});
            XDDFDateAxis bottomAxis = chart.createDateAxis(AxisPosition.BOTTOM);
            bottomAxis.setCrosses(AxisCrosses.AUTO_ZERO);
            bottomAxis.setTitle('时间');
            bottomAxis.setTickLabelPosition(AxisTickLabelPosition.NEXT_TO);

            // 设置时间格式
            SimpleDateFormat dateFormat = new SimpleDateFormat('yyyy/MM/dd');
            for (int i = 0; i < dateSource.getPointCount(); i++) {
                Row row = sheet1.getRow(i + 1);
                if (row != null) {
                    Cell cell = row.getCell(0);
                    if (cell != null && cell.getCellType() == CellType.NUMERIC) {
                        Date date = cell.getDateCellValue();
                        String formattedDate = dateFormat.format(date);
                        cell.setCellValue(formattedDate);
                    }
                }
            }

            // 设置左侧坐标轴为温度坐标轴
            XDDFValueAxis leftAxis = chart.createValueAxis(AxisPosition.LEFT);
            leftAxis.setCrosses(AxisCrosses.AUTO_ZERO);
            leftAxis.setTitle('温度');

            // 设置右侧坐标轴为数值坐标轴
            XDDFValueAxis rightAxis = chart.createValueAxis(AxisPosition.RIGHT);
            rightAxis.setCrosses(AxisCrosses.MAX);
            rightAxis.setTitle('数据值');

            // 设置数据源
            XDDFNumericalDataSource<Double> xs1 = XDDFDataSourcesFactory.fromNumericCellRange(sheet1, new CellRangeAddress(1, 127, 2, 2));
            XDDFNumericalDataSource<Double> ys1 = XDDFDataSourcesFactory.fromNumericCellRange(sheet1, new CellRangeAddress(1, 127, 0, 0));
            XDDFNumericalDataSource<Double> ys2 = XDDFDataSourcesFactory.fromNumericCellRange(sheet1, new CellRangeAddress(1, 127, 1, 1));

            // 添加数据系列
            XDDFLineChartData data = (XDDFLineChartData) chart.createData(ChartTypes.LINE, bottomAxis, leftAxis);
            XDDFLineChartData.Series series1 = (XDDFLineChartData.Series) data.addSeries(xs1, ys1);
            series1.setTitle('折线图1', null);
            series1.setSmooth(false);
            series1.setMarkerStyle(MarkerStyle.NONE);

            // 添加第二个数据系列
            XDDFLineChartData.Series series2 = (XDDFLineChartData.Series) data.addSeries(xs1, ys2);
            series2.setTitle('折线图2', null);
            series2.setSmooth(false);
            chart.getCTChart().getPlotArea().getLineChartArray(0).getSerArray(1).getOrder().setVal(1);

            // 设置次要垂直坐标轴
            CTLineSer ctLineSer = chart.getCTChart().getPlotArea().getLineChartArray(0).getSerArray(1);
            ctLineSer.addNewDLbls();
            ctLineSer.getDLbls().addNewShowLegendKey().setVal(false);
            ctLineSer.getDLbls().addNewShowVal().setVal(false);
            ctLineSer.getDLbls().addNewShowCatName().setVal(false);
            ctLineSer.getDLbls().addNewShowSerName().setVal(false);

            // 保存Excel文件
            FileOutputStream fileOut = new FileOutputStream('output.xlsx');
            workbook.write(fileOut);
            fileOut.close();

            System.out.println('折线图已创建并保存到 output.xlsx 文件中。');

        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

3. 代码解释

  • 代码首先加载现有的 Excel 文件 input-1.xlsx
  • 然后,它获取第一个工作表并创建一个 XSSFDrawing 对象来处理图表。
  • XSSFClientAnchor 对象定义了图表在工作表中的位置和大小。
  • XDDFChart 对象表示图表本身。
  • 代码设置图表的标题、图例位置、坐标轴类型和格式,以及数据系列。
  • 两个数据系列使用不同的 Y 轴,其中一个系列使用左侧 Y 轴,另一个系列使用右侧 Y 轴。
  • 最后,代码将修改后的 Excel 文件保存到 output.xlsx

4. 总结

本教程介绍了如何使用 Java 和 Apache POI 库创建包含多个数据系列的 Excel 折线图。您可以根据需要调整代码以满足您的特定需求,例如更改图表类型、添加数据标签或修改图表样式。

Java Apache POI 创建 Excel 折线图 - 附带详细代码示例

原文地址: https://www.cveoy.top/t/topic/fSE3 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录