AppEngine is strict on read and write access of files. If its already in the blobstore, why don't you try something like this,
BufferedReader reader = new BufferedReader(new InputStreamReader(new BlobStoreInputStream(blob_key))); Tom On Aug 2, 11:54 am, GKotta <[email protected]> wrote: > Thanks for your answer. > > I am uploading the file to the blobstore and the url is (in this case) > http:\127.0.0.1:8888\serve?blob_key=ud9_p4-NuAqHV-db2W_nfQ. > > Before the line > BufferedReader reader = new BufferedReader(new FileReader(filename)); > > I set String filename to http:\127.0.0.1:8888\serve?blob_key=ud9_p4- > NuAqHV-db2W_nfQ > > How do you make sure your file has read permissions? > > Thanks -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
