java - 在 HTML 和 JSP 代码中显示图像

标签 java jsp jdbc

如何在 HTML 和 JSP 代码中显示数据库中的图像?我在 JSP 中编写了这段代码。

<?xml version="1.0" encoding="UTF-8" ?>
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<%@ page language="java" %>
<%@ page import="java.sql.*" %>
<%@ page import="java.io.*" %>
<%@ page import="java.util.*"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <title>MindDotEditor posted Data</title>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <meta name="robots" content="noindex, nofollow" />
        <link href="../sample.css" rel="stylesheet" type="text/css" />
        <link rel="shortcut icon" href="../fckeditor.gif" type="image/x-icon" />
    </head>
    <body>

<%
    String url = "jdbc:mysql://localhost:3306/sample";
    Connection con = null;
    Statement stmt = null;
    ResultSet rs = null;
    String id = (String) session.getAttribute("id");
    int j = Integer.parseInt(id);

    try {
        Class.forName("com.mysql.jdbc.Driver").newInstance();
        con = DriverManager.getConnection(url,"root","root");
        stmt = con.createStatement();
        rs = stmt.executeQuery("SELECT Image_File FROM Images WHERE Image_id = '3' ");
        int i = 1;
        if(rs.next()) {
            Blob len1 = rs.getBlob("Image_File");
            int len = (int)len1.length();
            byte[] b = new byte[len];
            InputStream readImg = rs.getBinaryStream(1);
            int index = readImg.read(b, 0, len);
            System.out.println("index" +index);
            stmt.close();
            response.reset();
            response.setContentType("image/jpg");
            response.getOutputStream().write(b,0,len);
            response.getOutputStream().flush();
        }
    } catch(Exception ex) {
        out.println(ex);
    } finally {
        rs.close();
        stmt.close();
        con.close();
    }
%>

        <br>
        <center><input type="button" value="Print" onclick="window.print();return false;" /></center>
    </body>
</html> 

最佳答案

HTML 中的图像将使用 <img> 表示元素。 <img>元素有 src属性应该指向返回图像的 URL。在这种特殊情况下,该 URL 可以仅指向 Servlet得到 InputStream来自某个数据源的图像(例如,使用 FileInputStream 从本地磁盘文件系统,或使用 ResultSet#getBinaryStream() 从数据库)并将其写入 OutputStream通常的响应 Java IO方式。

因此,您基本上需要更改 HTML 以包含以下内容:

<img src="images?id=1">

然后创建一个Servlet映射到 url-pattern/images并实现doGet()大致如下:

Image image = imageDAO.find(Long.valueOf(request.getParameter("id")));

response.setContentType(image.getContentType());
response.setContentLength(image.getContentLength());
response.setHeader("Content-Disposition", "inline; filename=\"" + image.getFileName() + "\"");

BufferedInputStream input = null;
BufferedOutputStream output = null;

try {
    input = new BufferedInputStream(image.getInputStream());
    output = new BufferedOutputStream(response.getOutputStream());
    byte[] buffer = new byte[8192];
    int length;
    while ((length = input.read(buffer)) > 0) {
        output.write(buffer, 0, length);
    }
} finally {
    if (output != null) try { output.close(); } catch (IOException logOrIgnore) {}
    if (input != null) try { input.close(); } catch (IOException logOrIgnore) {}
}

应该是这样。

我当然假设 image数据库中的表已经具有( self 描述性)列 content_type , content_lengthfile_name ,否则您需要将第一个替换为 "image" ,保留第二个(或者如果相关数据库支持的话用 Blob#length() 替换)并为第三个硬编码一个(随机)名称。

此类 ImageServlet 的另一个(略有不同并涵盖错误处理)示例可以在 this article 中找到.

关于java - 在 HTML 和 JSP 代码中显示图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1232591/

相关文章:

java - StringBuilder 和 ResultSet 性能问题的可能原因是什么

java - 谁能解释下面嵌套静态接口(interface)的使用

java - SpringBoot scanBasePackages 在不同的 jar 中找不到存储库

java - 使用 GWT 时不相关的 Google App Engine API?

java - 列表转置

java - 从 WEB-INF 中包含 javascript 文件

java - 如何使用 Struts 2 将页面范围对象传递到自定义 JSP 标记?

java - 获取急切的惰性定义关系

java - Apache Storm的emitDirect问题

oracle - 如何使用 SSL 和 JDBC 设置 Oracle