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);
}
}
blob-keyto the servlet, right? So the link should behref="/mygaeproject1?blob-key=XXXYYYZZZ"– Peter Knego Jan 17 at 10:32