JSP 如何通过设置内容类型来保存.xlsx文件

kb5ga3dv  于 2022-12-16  发布在  其他
关注(0)|答案(1)|浏览(179)

在下面给出的jsp中尝试的代码。下面的代码在中打开窗口资源管理器以将文件保存到.xlsx(使用chrome浏览器),但要求是在单击图标时自动下载文件。尝试了堆栈溢出中发布的类似问题的解决方案,但无法找到该问题的正确解决方案。
在浏览器Firefox和chrome中检查解决方案

<%@ taglib uri="/struts-tags" prefix="s"%>
<%
    response.setContentType("application/application/vnd.openxmlformats-
     officedocument.spreadsheetml.sheet");
     response.setHeader ("Content-Disposition", 
     "attachment;fileName=tempAuthorizationCloseOutReportsResult.xlsx;");
 %>

 <s:set var="resultList" value="#request.tempAuthorizationCloseoutResult" />

 <div>
    <h3></h3>
 </div>
<br/>
<s:if test="#resultList.size <= 0">
     <table>
      <tr>
        <td>    
            <b> <s:text name="ui.label.text.norecordsfound" /> </b>
        </td>
      </tr>
    </table>
</s:if>

<s:elseif test="#resultList.size> 0">
 <table>
  <tr>
    <td>    
        <b><s:text name="ui.label.text.totalnumberofrecordsfound"/> : 
        <s:property value="#resultList.size" /> </b>
    </td>
  </tr>
</table>
6ss1mwsb

6ss1mwsb1#

@Override
protected void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {

        response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8");

        File xfile = < File>

        try (BufferedOutputStream bfos = new BufferedOutputStream(response.getOutputStream());
                FileInputStream fs = new FileInputStream(xfile)) {
            byte[] buffer = new byte[fs.available()];
            fs.read(buffer);

            bfos.write(buffer, 0, buffer.length);
            bfos.flush();
        }
 }

相关问题