Reputation: 2045
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
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