对excel进行分组分局第一列隔的列数

dart 复制代码
        List<List<String>> getdata = extractDataFromListNullString(chartDateTto.getDataList());
// 获取第一行数据
        List<String> firstRow = getdata.get(0);

// 获取第一行第二列的文字,前提是该文字不为 "0"
        String secondColumnText = firstRow.get(1);
        int columnGap = 0;
        if ("0".equals(secondColumnText)) {
            System.out.println("第二列的值为 0,跳过该列。");
        } else {
            // 查找下一个非空且非 "0" 的单元格文字并计算间隔
            String nextNonEmptyText = null;

            for (int i = 2; i < firstRow.size(); i++) {
                String currentCell = firstRow.get(i);
                if (currentCell != null && !currentCell.isEmpty() && !"0".equals(currentCell)) {
                    nextNonEmptyText = currentCell;
                    columnGap = i - 1; // 计算间隔列数,i - 1 因为要计算从第二列到下一个文字的间隔
                    break;
                }
            }

            if (nextNonEmptyText != null) {
                System.out.println("第一行第二列的文字: " + secondColumnText);
                System.out.println("下一个文字是: " + nextNonEmptyText);
                System.out.println("它们之间间隔了 " + columnGap + " 列");
            } else {
                System.out.println("在第一行没有找到下一个非空且非 '0' 的单元格文字。");
            }
        }

// 移除前两行数据
        getdata.remove(0);
        getdata.remove(0);

// 遍历每一行数据,删除第一列
        for (List<String> row : getdata) {
            if (!row.isEmpty()) {
                row.remove(0); // 删除每一行的第一列数据
            }
        }

// 遍历每一行数据,并将每行按 columnGap 列为一组进行分组
        for (int rowIndex = 0; rowIndex < getdata.size(); rowIndex++) {
            List<String> row = getdata.get(rowIndex);

            // 创建存储分组的列表
            List<List<String>> groupedData = new ArrayList<>();

            // 遍历当前行,并按 columnGap 列为一组进行分组
            for (int colIndex = 0; colIndex < row.size(); colIndex += columnGap) {
                List<String> group = new ArrayList<>();

                // 获取当前分组的列数据
                for (int i = colIndex; i < colIndex + columnGap && i < row.size(); i++) {
                    group.add(row.get(i));
                }

                // 添加分组到 groupedData 中
                groupedData.add(group);
            }

            // 打印分组数据
            for (int groupIndex = 0; groupIndex < groupedData.size(); groupIndex++) {
                System.out.print("分组 " + (groupIndex + 1) + " 数据: " + groupedData.get(groupIndex) + " ");
            }

            System.out.println(); // 每行数据分组后换行
        }
相关推荐
CodeCraft Studio11 小时前
Excel处理控件Spire.XLS系列教程:C# 合并、或取消合并 Excel 单元格
前端·c#·excel
云心雨禅15 小时前
Vim操作指令全解析
编辑器·vim·excel
安分小尧17 小时前
[特殊字符] 使用 Handsontable 构建一个支持 Excel 公式计算的动态表格
前端·javascript·react.js·typescript·excel
hello_simon20 小时前
在线小白工具,PPT转PDF支持多种热门工具,支持批量转换,操作简单,高效适合各种需求
pdf·html·powerpoint·excel·pdf转html·excel转pdf格式
Tttian6221 天前
Python办公自动化(3)对Excel的操作
开发语言·python·excel
有趣的我1 天前
vim的操作
编辑器·vim·excel
woniu_maggie1 天前
SAP EXCEL DOI 详解
开发语言·后端·excel
Dickson1 天前
如何批量拆分Excel工作表或按行拆分Excel表格 - Excel拆分器使用方法
excel·excel拆分器·拆分excel·拆分excel工作表·按行拆分excel
inxunoffice1 天前
批量将文本文件转换为 Word/PDF/Excel/图片等其它格式
pdf·word·excel
赵孝正2 天前
自动用 Excel 转 .CSV 为 .xlsx 的原理
excel