Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The tutorials for using the Blobstore all seem to demonstrate storing data by using a HTML POST form.

POST to the upload URL:

<form action="<%= blobstoreService.createUploadUrl("/upload") %>" method="post" enctype="multipart/form-data">
    <input type="file" name="myFile">
    <input type="submit" value="Submit">
</form>

I would like to upload the file using the server. (Java) Is there an API for this? or do I have to manually get the upload url, and POST server-side using HttpURLConnection?

 URL url = new URL(blobstoreService.createUploadUrl("/upload"));
 HttpURLConnection connection = (HttpURLConnection) url.openConnection();
share|improve this question

1 Answer

On the server-side you can simply store data in blobstore via the File API.

share|improve this answer
This is not ideal, since it is experimental, but I will give it a try. – Jay S. Dec 13 '12 at 22:20
We use it already about 9 months and it works without a problem. – Peter Knego Dec 14 '12 at 7:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.