I'm using the Google App Engine Blobstore service to store HTML files. These files correspond to webpages I'm trying to allow my users to edit and update.
If I have HTML files in the blobstore, what would be the easiest way to fetch the HTML code from the files stored and display the code in a TextArea etc.? Then how would I go about updating that file in the blobstore?
I know there is the fetchData method which returns a byte array, so how could I display the plain text HTML code from an HTML file in the blobstore?