vishesh
vishesh

Reputation: 2045

how to create docx file in google app engine with java

I want to create docx file in google app engine with java.I thought of using google docs,but it can only export as doc & not docx.Please suggest something.

Upvotes: 0

Views: 365

Answers (2)

Vishal Biyani
Vishal Biyani

Reputation: 4407

http://poi.apache.org/ might be your solution. You may not be able to write on disk within GAE environment, so you will have to flush out file to servlet or store in datastore as BLOB.

Check discussion at http://groups.google.com/group/google-appengine-java/browse_thread/thread/ba0dc0438d465bad?pli=1

Upvotes: 0

maerics
maerics

Reputation: 156592

I suggest searching the web for "java docx" and similar keywords related to dynamically generating documents, etc. The first hit on Google is JavaDocX, which looks like it will do the trick.

Upvotes: 1

Related Questions