MS Word Mail Merge

4
Hi, I need to create an application that has a list of addresses and names of products, which can be used to create a mail merge in ms word so that the product name with the address is in the letter. Is this possible? I know you can create java actions, but i do not have experience in creating java actions in combination with MS word mail merge.
asked
1 answers
5

Maybe the Java library from the Apache POI team can help you to edit MS Word documents with Java. You can search for specific fields in your document and replace them with addresses (and each other data).

Get this library here:

http://poi.apache.org/

The library can edit the old binary format (.doc) but also the new Open XML format (.docx).

answered