1

Someone knows any java library that allows me to export information to doc format, I appreciate variety.

My project is using Java EE and STRUTS2. So I need to evaluate and to compare the options.

For example JASPERREPORTS.

Arjan Tijms
  • 37,782
  • 12
  • 108
  • 140

1 Answers1

3

A good option is Apache POI. I have used it with Excel documents but it also provides support for handling .doc files.

Here is an example.

ionutab
  • 445
  • 4
  • 21
  • Thanks, but, based on your opinion, with POI i really get good results. Cause I have to manage a lot of information for show it, on this sense, it should be interesting for users – villanueva.ricardo Apr 24 '13 at 16:41
  • People have weighed in on POI, it is good and easy. There is also OpenOffice UNO, there are a lot of great features there unfortunately it isn't really designed to work with Java as a first class citizen and is a nightmare to use. Consider only if POI isn't able to do what you need. Disappointed that when there was backlash at Sun using too much Java in OpenOffice... having a decent document editing capabilities in the form of Java APIs today would mean a lot, who does most of their business programming is C++? Bit short sited not to stick to their guns. – Quaternion Apr 26 '13 at 20:10