Joseph
Joseph

Reputation: 45

How to create an excel file in google app engine (java)?

A question that seems to have quite a few options for Python, but none for Java after googling for two days. Really really could use some help all I have found so far is a recommendation to use gaeVFS to build an excel file from the xml components and then zip it all together which sounds like a slap in the face. Oh yes and if you were wondering I am questioning my use of Java rather than python but at 5,000 lines of code it would be insane to turn back now...

Other things you might find useful

Upvotes: 2

Views: 2643

Answers (5)

abhi169jais
abhi169jais

Reputation: 124

google app engine do not support input/output stream classes, you need to use google app engine virtual file system.

Upvotes: 0

user305516
user305516

Reputation:

Take a look at this post. It's a step by step tutorial on how to generate excel files on google app engine.

Upvotes: 0

Binary Nerd
Binary Nerd

Reputation: 13937

You could also take a look at the Apache POI project. You can read and write MS Excel documents with this library.

Upvotes: 0

Winston Chen
Winston Chen

Reputation: 6879

Have you checked out this api already: Java Excel API ?

Upvotes: 3

Related Questions