对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(); // 每行数据分组后换行
        }
相关推荐
神奇夜光杯5 小时前
Python酷库之旅-第三方库Pandas(202)
开发语言·人工智能·python·excel·pandas·标准库及第三方库·学习与成长
小c君tt6 小时前
MFC中Excel的导入以及使用步骤
c++·excel·mfc
一名技术极客8 小时前
Vue2 doc、excel、pdf、ppt、txt、图片以及视频等在线预览
pdf·powerpoint·excel·文件在线预览
用余生去守护9 小时前
【反射率】-- Lab 转换(excel)
excel
进击的六角龙9 小时前
Python中处理Excel的基本概念(如工作簿、工作表等)
开发语言·python·excel
TracyDemo9 小时前
excel功能
excel
lc寒曦9 小时前
【VBA实战】用Excel制作排序算法动画
排序算法·excel·vba
zzzgd8169 小时前
easyexcel实现自定义的策略类, 最后追加错误提示列, 自适应列宽,自动合并重复单元格, 美化表头
java·excel·表格·easyexcel·导入导出
努力学习技能的LY9 小时前
Excel:vba实现批量插入图片批注
excel
图片转成excel表格10 小时前
wps怎么算出一行1和0两种数值中连续数值1的个数,出现0后不再计算?
excel·wps