Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to know if it's possible to upload a file into the gae blobstore without using servlets, is it also possible to get the inserted blobkey once the insert is done? this is the code I have done so far:

public Upload(Blob picture) {
        HTTPResponse fetch = null;
        try {
            BlobstoreService blobstoreService = BlobstoreServiceFactory.getBlobstoreService();
            URLFetchService urlfetch = URLFetchServiceFactory.getURLFetchService();
            String uploadUrl = blobstoreService.createUploadUrl("/upload");
            URL url = new URL(uploadUrl);
            HTTPRequest request = new HTTPRequest(url, HTTPMethod.POST);

            request.setPayload(picture.getBytes());


            try {
                urlfetch.fetch(request);

            } catch (IOException ex) {
                java.util.logging.Logger.getLogger(Outfit.class.getName()).log(Level.SEVERE, null, ex);
            }


        } catch (MalformedURLException ex) {
            java.util.logging.Logger.getLogger(Outfit.class.getName()).log(Level.SEVERE, null, ex);
        }
    }
share|improve this question
1  
What are you trying to do? If you're trying to write to the blobstore from within your app, you should use the new write API. – Nick Johnson May 15 '11 at 22:32

1 Answer

There is no way to upload a file into blobstore at the momenent without using a servlet.

I suppose if you like you can use the new experimental write api of the blobstore.

The upload example in the GAE docs is pretty straight forward and would suggest sticking to it. Take a look here: http://code.google.com/intl/de-DE/appengine/docs/java/blobstore/overview.html

share|improve this answer

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.