jsp page print or convert to PDF with all css applied - java

I want to convert a portion of my jsp page to pdf. Now I am considering iText for this. Now iText will convert html code to pdf which is fine. But how to fetch my html code with all the stylling applied?
I have my css classes in external css file. I am trying to fetch html code but not getting the css rules applied to elements.
Is there any alternative way?

Related

Add html source to PDF field with Java

I'm trying to create a PDF from a template in my backend and then serve it to the user when it needs to download it. The only problem that I have is that one of the fields in that template must have HTML source in it and must be rendered. Is there any way to add HTML source in that field and render it ? I am currently using PDFBox.

How to generate JSP page as PDF in client side using JavaScript with proper alignment

I am trying to generate the JSP page as to PDF using JavaScript. The data alignment and the data not came fully.
You can convert HTML page ( JSP page ) as PDF using JSPdf.
Or you can send the content to Server side and generate PDF

I need to generate a pdf page using jsp

I need to create PDF output in jsp. The code is actually generating in the form a brochure which contains profile information but in HTML format. So, I wanted that HTML output to be converted into PDF format, and also it should not display "headers and footers" while printing! I've now installed "itext" too, but I'm not getting how to use to generate PDF file.

Generating doc file from html

I am working on project which converts html to a .doc file. I have implemented the html using divs not td/table. When I generate/download the doc file, the css which I have used in html is not applied.
I did some research and I found that .doc does not support some css attributes e.g position, float etc.
https://superuser.com/questions/146453/css-absolute-position-dont-work-in-ms-word
Is there any alternative to get css applied in .doc format
Can someone please help
Here Is list of supported attribute.
Ms word supported html tag
Here you can see and use it carefully in your project. It will help to make you minor change.
Maximum tag has full support except div tag.
Link for check COREEXTENDED
div has COREEXTENDED support. You can see it at link.

HTML Conversion with external css

I have tried to convert HTML to PDF using java iText API and it is working fine as well but the problem is API is not allowing to include the external CSS.
Can any one tell me how to convert html with external css to pdf?
You can inline CSS in your code, using for example Jericho library.
You have on their page the ready code sample:
http://jericho.htmlparser.net/samples/console/src/ConvertStyleSheets.java

Categories

Resources