Google 应用引擎显示图像

发布于 2024-10-18 20:18:19 字数 904 浏览 2 评论 0原文

我在显示从 Google App Engine Java 中的 DataStore 抓取的图像时遇到问题。

Servlet 代码:

public void doGet(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException
{
    String type=request.getParameter("type");

    if(type != null)
    {
        if(type.equalsIgnoreCase("showImage"))
        {
            Blob blob = this.retrieveImage();
            response.setContentType("image/jpg");
            response.getOutputStream().write(blob.getBytes());  
        }
    }
}

private Blob retrieveImage()
{
    GetImageQuery query = new GetImageQuery ();
    List<ImageData> listImages=query.getImages();

    Blob blobImage = listImages.get(0).getImage();
    return blobImage;
}

使用的图像 src url:

<img src="/image?type=showImage" />

可能缺少某些内容,只是无法弄清楚是什么。我已经对其进行了调试,代码已运行,并且 blob 包含数据,但图像根本没有显示。

I've a problem showing an image grabbed from the DataStore in Google App Engine Java.

Servlet code:

public void doGet(HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException
{
    String type=request.getParameter("type");

    if(type != null)
    {
        if(type.equalsIgnoreCase("showImage"))
        {
            Blob blob = this.retrieveImage();
            response.setContentType("image/jpg");
            response.getOutputStream().write(blob.getBytes());  
        }
    }
}

private Blob retrieveImage()
{
    GetImageQuery query = new GetImageQuery ();
    List<ImageData> listImages=query.getImages();

    Blob blobImage = listImages.get(0).getImage();
    return blobImage;
}

Image src url used:

<img src="/image?type=showImage" />

Something's probably missing, just can't figure out what. I've debugged it and the code is run and the blob contains data but an image is simply not showing.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

百善笑为先 2024-10-25 20:18:19

JPEG 图像的正确 MIME 类型是 image/jpeg 而不是 image/jpg (请参阅此 参考),并且某些网络浏览器似乎不接受 image/jpg

您可以使用 response.setContentType("image/jpeg"); 尝试相同的代码。

The right MIME type for JPEG images is image/jpeg and not image/jpg (see this reference) and it seems that some web browsers don't accept image/jpg.

You can try the same code with response.setContentType("image/jpeg");.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文