Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on a project which requires manipulation of MS word document using Java. I have found that Apache POI is the best API to do that. But I could not properly understand the use of POI from this link . Also, I was not able to SVN check-out the source from here. Can anyone please help me with using POI or some sample code. Thanks.

EDIT: Can I edit an existing Word template document and replace the place holders with the text I want using POI?

share|improve this question
See also this example. – trashgod Apr 4 '12 at 6:07
possible duplicate stackoverflow.com/questions/2253779/… – Raju Apr 4 '12 at 6:09

4 Answers

up vote 7 down vote accepted

1) You can download POI as a .zip or .tar.gz file (WinZip should understand both formats) here.

2) The Quick Guide is here.

3) This Quick Guide points to the unit tests, which make for excellent sample code.

4) Here's another good howto (it's for Excel, but applicable to Word).

share|improve this answer
thanks a lot :) – Sunmit Girme Apr 4 '12 at 6:36

You need busy developer's guide .

share|improve this answer

Try this site: http://www.roseindia.net/java/poi/

It contains code samples.

share|improve this answer
1  
roseIndia does not maintain standard examples – Raju Apr 4 '12 at 6:08
Thank you. Can be helpful.. – Sunmit Girme Apr 4 '12 at 6:37

Apache POI actually contains many APIs, each API provide ability to operate particular file. Manual of each API can be found at Apache POI, you can see a list of API at left which link to the individual pages. You can find quick guide in it.

Last, you can just download source distribution at download page.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.