I want to be able to store, retrieve, and modify a small amount of textual data (< 2 mb) online. What service should I use to be able to do this programatically (in Java)?
+1
A:
You can try Google's App Engine. http://code.google.com/appengine/docs/whatisgoogleappengine.html
Also there is Amazon S3. http://aws.amazon.com/s3/
I know a few Open Source people using these tools to store online persistent data to useful effect.
Jotham
2009-03-19 01:24:14
any free alternatives?
Penchant
2009-03-19 01:28:09
As far as I am aware the Datastore on App Engine has a free quota mode.http://code.google.com/appengine/docs/quotas.html
Jotham
2009-03-19 01:33:00
+1
A:
Try Google Spreadsheets (Java API Reference). You can upload a CSV which gets automatically converted to a spreadsheet, then you can query or edit it programmatically, or manipulate it online, then if you need to get it as CSV you can export it.
Mauricio Scheffer
2009-03-25 17:14:27