图片 BASE64编码 JSP 显示

时间:2022-11-12 22:55:25

对于图片在JSP中显示的问题很常见,用户上传图片,最简单的办法放到数据库中,如何显示?

用户需要把图片以BASE64编码的方式放到XML中,然后上传XML,我们需要显示该图片,

办法是:

1、把图片编码存储到数据库中,然后利用Servlet来显示图片

[html] view plaincopy
  1. try {  
  2.             MysqlDAO md = MysqlDAO.getInstance();  
  3.             String chartId = request.getParameter("picChartId");  
  4.             PicChartBean pcb = md.findPicChartById(chartId);  
  5.             byte[] picdata = new sun.misc.BASE64Decoder().decodeBuffer(pcb  
  6.                     .getPic_content());  
  7.             response.setContentType("image/*"); // 设置返回的文件类型  
  8.             OutputStream toClient = response.getOutputStream(); // 得到向客户端输出二进制数据的对象  
  9.             toClient.write(picdata); // 输出数据  
  10.             toClient.close();  
  11.         } catch (IOException e) // 错误处理  
  12.         {  
  13.             PrintWriter toClient = response.getWriter(); // 得到向客户端输出文本的对象  
  14.             response.setContentType("text/html;charset=gb2312");  
  15.             toClient.write("无法打开图片!");  
  16.             toClient.close();  
  17.         }  

2、在JSP中,调用该Servlet [html] view plaincopy
  1. <c:if test="${not empty piccharts}">  
  2.         <c:forEach var="picChart" items="${piccharts}" varStatus="sindex">  
  3.             <tr>  
  4.             <td>${picChart.pic_name }</td>  
  5.             <td><img src="<%=basePath1%>servlet/picShow?picChartId=${picChart.id }"> </td>  
  6.             <td>${picChart.pic_description }</td>  
  7.             </tr>  
  8.         </c:forEach>  
  9.     </c:if>