I'm working on a small project where I need to create a dynamically produced table in MS word using Java. I've been fiddling around with Apache POI, and while i'm fairly certain this is the right API for the job, i'm having a hard time finding documentation/examples for styling my table. I don't need a complex table, but I need at least to be able to change the individual column widths, margins, border types, etc.
It seems to me that there is a lot more table functionality in the XSSF (Excel) portion of POI.. would it make more sense to try and produce the table in excel and then export it to MS Word?
My other thought was to create the actual table in MS Word and then somehow reproduce the XML using POI but i'm not the most experienced programmer and this way seemed like it would be fairly complex.
Any help would be greatly appreciated, thank you!