我意識到這個問題已被問及之前(我看了所有的解決方案,並嘗試所有),但我仍然試圖生成一個PDF文檔的頁眉和頁腳在每一頁上重複。生成頁眉/頁腳與飛碟(xHTMLRenderer)和iText
我正在使用flying saucer
R8與iText2.0.8
我已經嘗試了很多不同的方法來使它工作,但目前爲止無濟於事。我測試過的一些方法是https://gist.github.com/626264,使用運行元素和邊距框http://pigeonholdings.com/projects/flyingsaucer/R8/doc/guide/users-guide-R8.html#xil_40(css3功能),飛碟r7指南,不適用於r8 http://today.java.net/pub/a/today/2007/06/26/generating-pdfs-with-flying-saucer-and-itext.html#page-specific-features,長期以來許多其他方法不適用於我。
我的標題div
包含2個其他div與圖像和我的頁腳只是頁碼。這個html被放入一個叫做buf的StringBuffer
。
buf.append("<head>");
buf.append("<title>blabla</title> ");
buf.append("<style type='text/css' media='print'> ");
buf.append("@page { size:8.5in 11in; padding:1em; @bottom-left { content: element(footer); } } ");
buf.append("#footer { font-size: 90%; font-style: italic; position: running(footer); top: 0; left: 0; }");
buf.append("#pagenumber:before { content: counter(page); } ");
buf.append("#pagecount:before { content: counter(pages); } ");
buf.append("</style></head>");
buf.append("<body>");
buf.append("<div class='header' style='clear:both;'>");
buf.append("<div id='moneyLogo' style='float:left'>");
buf.append("<img src='logo.jpg' alt='Some alt text' />");
buf.append("</div>");
buf.append("<div id='canLogo' style='float:right'>");
buf.append("<img src='someImg.gif' alt='alt text' />");
buf.append("</div>");
buf.append("<h3 style='text-align:center; clear:both;'>alt text</h3>");
buf.append("<div style='text-align:center;'>");
buf.append("Some texy text");
buf.append("<br />"););
buf.append("</div>");
buf.append("</div><br /><br />");
buf.append("<div id='footer'> Page <span id='pagenumber'/> of <span id='pagecount'/> </div>");
buf.append("</body>");
buf.append("</html>");
我的pdf生成很好,除了頭只出現在第一頁上,頁腳只出現在最後一頁的底部。當我通過W3C驗證器的HTML它出來很好,但是當我用他們的CSS驗證器它說,他們在線路分析錯誤@page { size:8.5in 11in; padding:1em; @bottom-left { content: element(footer); } }
據我所知道的所有指南我讀這很好。我還聽說W3C CSS驗證器對於CSS3規範是不完整的,所以我認爲它是驗證者錯了。
如果有人可以給我到哪裏尋找或想法,就會使我一週:)
附:一些技巧必須使用飛碟R8和/或iText的2.0.8
對未來用戶留下評論:如果頁腳未在flyingsaucer的所有頁面上運行,請確保頁腳元素是BEFORE內容,這與正常的HTML頁面不同。您可以通過@Giovanni查看下面的示例,其中顯示頁眉和頁腳在內容之前。你的代碼是正確的,只是頁眉和頁腳必須放在內容之前,而且非常直觀。 –