I am trying to create a PDF file using the JSP page and my coding scheme as follows:
Document document = new Document(PageSize.A4,70,70,140,30);
response.setContentType("application/pdf" );
response.setHeader("Content-Disposition","inline; filename=vishwa-mandate.pdf");
PdfWriter.getInstance(document, response.getOutputStream());
document.open();
HeaderFooter footer = new HeaderFooter(new Phrase("This is page "), true);
document.setFooter(footer);
document.newPage();
document.close();
The page footer does not apply to PAGE 01 as soon as I directly invoke. document.newPage();
How can I get the footer from the whole document?
source
share