How to convert the pdf into the word doc fil开发者_如何学Ce?
The pdf file was generated by JasperReports
and which has one table in which one column contains text with html body part like <p><b>test</b></p>
So I just want to convert this pdf file in doc with proper formating like text display in bold format.
Much of the format information is removed in converting a file into a PDF so you can not just convert it back unless the PDF was created as Marked content with additional meta tags in it.
I wrote a blog article explaining about PDF text at http://www.jpedal.org/PDFblog/2009/04/pdf-text/
Pro grammatically you can do it with Apachi POI. You can first read the PDF and then write it to a Word Doc using the API.
精彩评论