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.

how to download a blob from app engine?? i want to search for a particular blob and thn provide a download link..what i tried is :

<input type="text" name="search"> 
<input type="submit" value="SEARCH" > 
<a href="/mygaeproject1">download link</a>

where the mygaeprojectServlet file has a url pattern of mygaeproject1....and the contents of the file are:

public class ProjectServlet extends HttpServlet {

  private BlobstoreService blobstoreService = BlobstoreServiceFactory.getBlobstoreService(); 

  public void doGet(HttpServletRequest req, HttpServletResponse resp) 
     throws IOException 
  {
    BlobKey blobKey = new BlobKey(req.getParameter("blob-key"));      
    blobstoreService.serve(blobKey, resp);
    BlobInfoFactory blobInfoFactory = new BlobInfoFactory();
    BlobInfo blobInfo = blobInfoFactory.loadBlobInfo(blobKey);
    resp.setContentLength(new Long(blobInfo.getSize()).intValue()); 
    resp.setHeader("content-type", blobInfo.getContentType()); 
    resp.setHeader("content-disposition", "attachment; filename=" + 
            blobInfo.getFilename()); 
    blobstoreService.serve(blobKey, resp); 
  }
}
share|improve this question
you are heading in write direction..please go ahead. – Ankur Jain Jan 17 at 9:08
but t doesnt give the blob when i use the link....what to do? – user123456789 Jan 17 at 10:18
2  
You need to pass the blob-key to the servlet, right? So the link should be href="/mygaeproject1?blob-key=XXXYYYZZZ" – Peter Knego Jan 17 at 10:32
so now i need to retrieve each blobkey value for each file and pass t...right? – user123456789 Jan 17 at 11:03
Exactly you need to have value of blobkey to download it. – Ankur Jain Jan 17 at 18:51
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.