如何从谷歌应用引擎(java)中将图像检索到jsp

时间:2012-12-31 05:43:07

标签: java google-app-engine image-uploading blobstore

我正在寻找将图像检索到jsp中。

我找到了this link

但是在这个我无法将图像检索到我想要的jsp中,它只是显示图像

1 个答案:

答案 0 :(得分:1)

我建议您将Blobstore中的Image作为图像服务提供,它会为您的图像提供更好的性能,尺寸等。

请参阅下面的代码。

ImagesService services = ImagesServiceFactory.getImagesService();
ServingUrlOptions serve = ServingUrlOptions.Builder.withBlobKey(blobKey);    // Blobkey of the image uploaded to BlobStore.
String url = services.getServingUrl(serve);

您将获得可以轻松放入HTML图像标记的图像的URL。

<img src="url" />

您可以从这里了解AppEngine的图像服务。 GAE Image Services