java - How to load ms word document in jasper report -


How to load a Word document in Jasper reports in Java

  1. Place a word document anywhere on a shared network drive and add a link to it in the report.

  2. You can convert the word document to PDF and then link it to your report. In this way, almost any person on the planet (not just Windows users) can read it.

  3. You can convert word document to PDF and then use a tool to convert it to PNG. Or JPEG images (one page = one picture) and then include images in your report. This will make the report much bigger.

  4. You can expect that Microsoft will implement a MS Word Reader in Java and during this time your boss will tell that it is not possible without some shortcomings.


Comments

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -