如何將新頁面添加到iText文檔? document.newPage();
似乎不起作用。iText添加新頁面
我利用iText與RTF支持http://sourceforge.net/projects/itextrtf/
部分我的代碼:
Font titleFont = new Font(Font.COURIER, 14, Font.BOLD);
document.add(new Paragraph("Title1", titleFont));
Table table = new Table(4);
table.setBorderWidth(0);
// Filling table
document.add(table);
document.newPage();
document.add(new Paragraph("Title2", titleFont));
Table table = new Table(4);
table.setBorderWidth(0);
// Filling table
document.add(table);
添加了一些示例代碼,我在添加新元素後調用newPage。 – Thys 2010-11-26 11:13:48
@MrThys:V.很奇怪。我的代碼看起來很相似並且工作正常。對不起,不要有另一個想法給你,祝你好運。 – 2010-11-26 11:16:10