AppEngineFile AFE = new AppEngineFile(FILESYSTEM + alist.get(0).getPath());
BlobKey bk = FileServiceFactory.getFileService().getBlobKey(AFE);
if("image/jpeg".equals(alist.get(0).getContentType()) ){
resp.setContentType("image/jpeg");
}
resp.setHeader("Content-Disposition", "attachment; filename=\"" + alist.get(0).getTitle() + "\"");
FileService fileService = FileServiceFactory.getFileService();
AppEngineFile file = null;
try {
file = fileService.getBlobFile(bk);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
FileReadChannel ch = null;
try {
ch = fileService.openReadChannel(file, false);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (LockException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
byte[] barray = new byte[MAXSIZE];
ByteArrayOutputStream baos = new ByteArrayOutputStream();
try {
ByteBuffer bb = ByteBuffer.wrap(barray);
int nRead;
while ((nRead=ch.read(bb)) != -1) {
for (int i=0; i < nRead; i++) {
try {
baos.write(barray[i]);
} catch (Exception e) {
e.printStackTrace();
}
}
bb.clear();
}
} catch (IOException e) {
e.printStackTrace();
}
resp.setContentLength(baos.size());
// resp.getOutputStream().write(baos.toByteArray()); // <= if I use it, this message, "Error 6 (net::ERR_FILE_NOT_FOUND): The file or directory could not be found.", is showed.
// out.print(baos); // <= if I use this, I can download a file but it is byte code.
baos.flush();
baos.close();
如何修复整个代码以下载图像文件?因为如果我使用数字1,它会出错,这是“错误6(net :: ERR_FILE_NOT_FOUND):无法找到文件或目录。”,显示。“或者,如果我使用数字2,它看起来很好,但存储文件的类型是字节码。这意味着不是图像文件。
谁可以给我任何想法或例子?
答案 0 :(得分:0)
我曾经遇到过这个问题。您无法读取随应用程序上传的文件。它们被认为是静态应用程序blob,并且不以任何方式存在于您的代码中。
看看here并注意到现在唯一可用的选项是BLOBSTORE
。
如果您希望应用程序代码可以读取某些内容,则必须将其存储在Blobstore中或作为BlobProperty
存储在数据存储区中的对象上(效率非常低,如果可以,请使用Blobstore)。