为什么从 Java servlet 保存的文件应该是 JPG,却是 BMP?

发布于 2024-12-22 00:55:41 字数 1022 浏览 1 评论 0原文

我将 JPG 照片存储在数据库表中,并使用 Java servlet 在我的网页中呈现它们。当我将一张照片从网页保存到桌面时,浏览器将照片保存为 BMP 文件,而实际上它应该将其保存为 JPG 文件。而且,当数据库中只有3.4MB时,BMP文件却有35MB。谁能解释一下这是怎么发生的?

以下是 servlet 提供文件的方式...

        if (resultSet.next()) {
            inputStream = resultSet.getBinaryStream(1);
            if (!resultSet.wasNull()) {
                String mimeType = URLConnection.guessContentTypeFromStream(inputStream);
                if (mimeType == null) {
                    logger.debug("Content Type is image");
                    response.setContentType("image");
                } else {
                    logger.debug("Content Type is " + mimeType);
                    response.setContentType(mimeType);
                }
                line = inputStream.read(buffer);
                while (line != -1) {
                    servletOutputStream.write(buffer, 0, line);
                    line = inputStream.read(buffer);
                }
                inputStream.close();
            }
        }

I store JPG photos in a database table and use Java servlets to render them in my web pages. When I save one of my photos from my web page to my desktop, the browser saves the photo as a BMP file when it should save it as a JPG file. And, the BMP file is 35MB when it is only 3.4MB in the database. Could anyone explain how this could be happening?

Here is how the servlet is serving up the file...

        if (resultSet.next()) {
            inputStream = resultSet.getBinaryStream(1);
            if (!resultSet.wasNull()) {
                String mimeType = URLConnection.guessContentTypeFromStream(inputStream);
                if (mimeType == null) {
                    logger.debug("Content Type is image");
                    response.setContentType("image");
                } else {
                    logger.debug("Content Type is " + mimeType);
                    response.setContentType(mimeType);
                }
                line = inputStream.read(buffer);
                while (line != -1) {
                    servletOutputStream.write(buffer, 0, line);
                    line = inputStream.read(buffer);
                }
                inputStream.close();
            }
        }

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

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

发布评论

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

评论(1

舞袖。长 2024-12-29 00:55:41

您的浏览器选择 BPM 的原因可能是文件的 mime 类型。

Probably the reason for your browser to choose BPM is the mime type of the file.

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