簡體   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