繁体   English   中英

在Java中使用Apache POI在Excel的合并区域中对齐文本中心

[英]Align text center in the merged region in excel using apache poi in java

我创建了一个Excel工作表,在其中将值插入到单元格中并同时垂直合并单元格,我能够实现这一点,但是问题是,我无法在合并的单元格中垂直居中对齐文本。当前,文本显示在垂直合并的单元格的底部。

这是我的代码,

    CellStyle cs = null;
    cs = wb.createCellStyle();
    cs.setWrapText(true);
    //cs.setAlignment(CellStyle.ALIGN_CENTER);
    cs.setVerticalAlignment(CellStyle.VERTICAL_CENTER);
    cs.setFont(f);



            Row row[]=new Row[pageListAcrToDept.size()]; 
            for (int i = 0; i < pageListAcrToDept.size(); i++) {
                rowIndex = 8 + i ;
                row[i]=sheet.createRow(rowIndex);
            }

            List<List<String>> datas=new ArrayList<>();
            datas.add(pageListAcrToDept);
            datas.add(notesListAcrToDept);
            datas.add(treatmentListAcrToDept);
            datas.add(upcListAcrToDept);
            datas.add(itemCodeListAcrToDept);
            datas.add(descListAcrToDept);
            datas.add(subDeptListAcrToDept);
            datas.add(limitListAcrToDept);
            datas.add(XforListAcrToDept);
            datas.add(priceListAcrToDept);
            datas.add(couponListAcrToDept);
            datas.add(adzoneListAcrToDept);
            datas.add(promoDescListAcrToDept);

            for (int column = 0; column < 13; column++) {
                List <String> list=datas.get(column);
            int index=0;
            for (int i = 0, prev = -1; i < list.size(); i++) {
                if (i == list.size() - 1 || ! list.get(i).equals(list.get(i + 1))) {
                    //System.out.printf("number: %d, count: %d%n", list.get(i), i - prev);


                    for(int pos=0;pos<i - prev;pos++){
                        int posi=index+pos;
                    Cell cell=  row[posi].createCell(column);
                    cell.setCellStyle((CellStyle) cs);
                    cell.setCellValue(list.get(i));
                    }
                    int startrowpos=index+8;
                    int endrowpos=index+8+(i - prev)-1;
                    if(startrowpos==endrowpos){
                        LOG.info("don't merge");
                    }else{
                    CellRangeAddress cellRangeAddress = new CellRangeAddress(startrowpos, endrowpos,
                            column, column);
                    sheet.addMergedRegion(cellRangeAddress);
                    }
                    index=index+(i - prev);
                    prev = i;
                }
            }
        }

最后,我解决了这个问题。 我将更改发布在这里,因为它可能会帮助其他人。

     for (int column = 0; column < 13; column++) {
                List <String> list=datas.get(column);
            int index=0;
            for (int i = 0, prev = -1; i < list.size(); i++) {
                if (i == list.size() - 1 || ! list.get(i).equals(list.get(i + 1))) {
                    //System.out.printf("number: %d, count: %d%n", list.get(i), i - prev);

                    int posi=0;
                    for(int pos=0;pos<i - prev;pos++){
                        if(pos==0){
                            posi=index+pos;
                        }
                    }
                    int startrowpos=index+8;
                    int endrowpos=index+8+(i - prev)-1;
                    if(startrowpos==endrowpos){
                        LOG.info("don't merge");
                        Cell cell=  row[posi].createCell(column);
                        cell.setCellStyle((CellStyle) cs);
                        cell.setCellValue(list.get(i));
                    }else{
                    CellRangeAddress cellRangeAddress = new CellRangeAddress(startrowpos, endrowpos,
                            column, column);
                    sheet.addMergedRegion(cellRangeAddress);
                        Cell cell=  row[posi].createCell(column);
                        cell.setCellStyle((CellStyle) cs);
                        cell.setCellValue(list.get(i));
                    }
                    index=index+(i - prev);
                    prev = i;
                }
            }
        }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM