使用Struts在JSP中使用BLOB MySQL显示doc文件

时间:2014-05-04 14:08:12

标签: java mysql jsp struts blob

我需要从MySQL DB中检索一个.doc文件,并将其存储为BLOB数据类型。这是我的操作文件代码

List<CandyDetails> det = new ArrayList<CandyDetails>();
CandyDetails details = new CandyDetails();

ResultSet rs3 = st.executeQuery("SELECT * FROM seek_resume WHERE seek_code = '"+seekCode+"'");
   while(rs3.next()){
      details.setResume(rs3.getBytes(2));
}

request.setAttribute("candyDet", det);
return mapping.findForward("success");

这是CandyDetails.java文件

private byte[] resume;
//getter/setter methods

这是我的JSP页面代码

<logic:iterate name="candyDet" id="in">
     ${in.resume}
</logic:iterate>

我在jsp页面上得到的输出是一些乱码

[B@3efc0688 

每次刷新时,B @之后的数字似乎都在变化。

我使用的是Struts 1.3。

1 个答案:

答案 0 :(得分:0)

将其置于Action类

String qry="SELECT * FROM seek_resume WHERE seek_code = '"+seekCode+"'"";
Statement st = con.createStatement(qry);                
ResultSet rs = st.executeQuery();
if(rs.next()) //show one document
{
    byte[] bytearray = new byte[1048576];
    int size=0;
    InputStream is = rs.getBinaryStream(2);
   // String contentType=rs.getString("content_type");
    String contentType = "application/msword"; //doc
    String contentType = "application/vnd.openxmlformats-officedocument.wordprocessingml.document"; //docx                     
    response.reset();
    response.setContentType(contentType);
    while((size=is.read(bytearray))!= -1 )
    {
        response.getOutputStream().write(bytearray,0,size);
    }
}

//return null;

---------- JSP --------

<a href="showDoc.do?seekCode=${seekCode}" target="_blank"> View</a>

//根据需要添加链接。

通过将代码传递给动作类来调用动作类,并将其作为响应提供给文档。

OR

您可以使用Apache POI将文档显示为内联内容。