我想将我的代码升级到itext 5.4.3。 它是用itext的版本编写的,即2.1.7。
我在宣布表格,段落和所有内容时遇到问题。 我之前的代码就像这样::
Table tab = new Table();
tab.setWidth(100);
tab.addCell(new Paragraph("Sr. No."));
tab.addCell(new Paragraph("Candidate Name",new Font(Font.HELVETICA, 14, Font.BOLD)));
tab.addCell(new Paragraph("Candidate Code",new Font(Font.HELVETICA, 14, Font.BOLD)));
tab.addCell(new Paragraph("Login ID",new Font(Font.HELVETICA, 14, Font.BOLD)));
tab.addCell(new Paragraph("Password",new Font(Font.HELVETICA, 14, Font.BOLD)));
所以请根据使用itext 5.4.3版本让我知道教程的解决方案或链接。