0

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

我找到了这个链接

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

4

1 回答 1

1

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

请参阅下面的代码。

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

您将获得图像的 URL,您可以轻松地将其放入 HTML 的图像标签中。

<img src="url" />

您可以从这里了解更多关于 AppEngine 的图像服务的信息。GAE 图像服务

于 2012-12-31T09:13:47.667 回答