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 have text files stored in GAE Blobstore. Now I want to read the contents of the file and view them in my browser, without actually downloading the file.

I am accessing the servlet by clicking on link on my HTML page which access the servlet.

I am serving the file with blobKey

    String blobKey = req.getParameter("blobKey");
    BlobKey blobKey = new BlobKey(blobKey);
    resp.setContentType("text/plain");
    resp.setHeader("Content-Disposition", "attachment; filename=\"" +fileName +"\"");
    blobstoreService.serve(blobKey, resp);

But the above code is downloading the file instead by displaying it in a browser. Can anyone help me please.

share|improve this question

1 Answer

up vote 2 down vote accepted

Remove the line setting the Content-Disposition in the header, that should do the trick.

share|improve this answer
Thank You Sir...!!! – Ankur Jain Oct 8 '12 at 8:41

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.