如何使用Itext在PDF中画空table(Java)?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用Itext在PDF中画空table(Java)?相关的知识,希望对你有一定的参考价值。

代码:
Table table1 = new Table(6);
table1.setAutoFillEmptyCells(true);
com.lowagie.text.Cell cell = new com.lowagie.text.Cell("");
cell.setBorder(1);
table1.addCell(cell);
table1.addCell(cell);
table1.addCell(cell);
table1.addCell(cell);
table1.addCell(cell);
table1.addCell(cell);
document.newPage();
document.add(table1);
---------------------------------------------------------------
com.lowagie.text.Cell cell = new com.lowagie.text.Cell("");
上边这句换成
com.lowagie.text.Cell cell = new com.lowagie.text.Cell("test");
能正常显示,但如果我想让cell中都为空,则什么都没有了……
求指点!!!

com.lowagie.text.Cell cell = new com.lowagie.text.Cell("");
改成
com.lowagie.text.Cell cell = new com.lowagie.text.Cell("\n");
参考技术A 到网上找找看。

以上是关于如何使用Itext在PDF中画空table(Java)?的主要内容,如果未能解决你的问题,请参考以下文章

iText 7 将 HTML 转换为 PDF - 如何查看整个宽表?

基于相同日期的 iText PDF 替代行颜色

iText生成PDF时 table的单元格边框怎么设置为虚线

IText 生成pdf 怎么设置其大小

word+freemarker+itext+flyingsaucer通过模板生成pdf注意事项

如何运用Java组件itext生成pdf