gpt4 book ai didi

java - 如何在浏览器上显示提交到数据库的图像?

转载 作者:行者123 更新时间:2023-12-01 14:28:45 25 4
gpt4 key购买 nike

以下 servlet 代码,从数据库表中获取图像字节。

protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
Configuration config = new Configuration().configure();
SessionFactory sessFact = config.buildSessionFactory();
Session sess = sessFact.openSession();
pojo.File image_file = (pojo.File)sess.get(pojo.File.class, 2);
byte image_file_bytes[] = image_file.getFiles_uploaded();

// NOW WHAT ? HOW DO I MAKE IT DISPLAY IN THE BROWSER ?
}

我有字节。接下来我该怎么做才能在浏览器上显示图像?

最佳答案

您使用 HttpServletResponse 的 OutputStream 来写出数据。

关于java - 如何在浏览器上显示提交到数据库的图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16978494/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com