我正在尝试在Apache-POI的表格中显示特定行的水平线。使用表格,我可以显示所有水平线,但是当我转到特定的行时,我看不到如何做。我使用getTable,但是它再次适用于整个表:(

有人可以帮我吗?

        XWPFTableRow tableRow = table.createRow();
        tableRow.getTable().setInsideHBorder(XWPFBorderType.SINGLE,10, 5,    "1C7331");

        for (int col=0; col<3; col++){
            tableCell = tableRow.getCell(col);
            tableCell.removeParagraph(0);
            textCell = tableCell.addParagraph();
            textCell.setAlignment(ParagraphAlignment.LEFT);
            textCell.setIndentFromLeft(50);
            run= textCell.createRun();
            run.setBold(true);
            switch(col){
                case 0: run.setText(plantingDate);
                        break;
                case 1: run.setBold(false);
                        run.setText(sampleName);
                        break;
                case 2: run.setBold(false);
                        run.setText(sample.getCount());
                        break;
            }
        }

最佳答案

我不确定要绘制哪条线,但是向单元格添加边框的典型方法是

textCell.setBorderBottom(Borders.NONE);


没有行,例如-

textCell.setBorderBottom(Borders.BASIC_WIDE_MIDLINE);


换一条线。

您也可以像这样设置左右边框。这有帮助吗?

关于java - 在单词表中显示单个水平线,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45834468/

10-12 05:50