主頁 > 知識庫 > 用JSP下載word文件(不會直接用IE打開)

用JSP下載word文件(不會直接用IE打開)

熱門標簽:地圖標注創(chuàng)業(yè)項目入駐 地圖標注制作道路 四川電信外呼系統(tǒng)靠譜嗎 外呼系統(tǒng)啥意思 廣州三五防封電銷卡 山東智能云外呼管理系統(tǒng) 電銷外呼系統(tǒng) 排行榜 長春回撥外呼系統(tǒng)廠家 珠海銷售外呼系統(tǒng)運營商

%@page import="java.util.*"%>
%@page import="java.io.*"%>
%@page import="java.net.*"%>
%
    String filename = "";
    if (request.getParameter("file") != null) {
        filename =     request.getParameter("file");
    }
    response.setContentType("application/msword");
    response.setHeader("Content-disposition","attachment; filename="+filename);

    BufferedInputStream bis = null;
    BufferedOutputStream bos = null;
    try {
        bis = new BufferedInputStream(new FileInputStream(getServletContext().getRealPath("" + filename)));
        bos = new BufferedOutputStream(response.getOutputStream());

        byte[] buff = new byte[2048];
        int bytesRead;

        while(-1 != (bytesRead = bis.read(buff, 0, buff.length))) {
            bos.write(buff,0,bytesRead);
        }

    } catch(final IOException e) {
        System.out.println ( "出現(xiàn)IOException." + e );
    } finally {
        if (bis != null)
            bis.close();
        if (bos != null)
            bos.close();
    }
    return;
%>

您可能感興趣的文章:
  • JSP生成WORD文檔,EXCEL文檔及PDF文檔的方法
  • jsp頁面中顯示word/excel格式的文檔的方法
  • jsp導出excel并支持分sheet導出的方法
  • JSP導出Excel文件的方法
  • JSP上傳excel及excel插入至數(shù)據(jù)庫的方法
  • Jsp中的table多表頭導出excel文件具體實現(xiàn)
  • jsp實現(xiàn)針對excel及word文檔的打印方法

標簽:紹興 北海 玉樹 肇慶 潮州 廣元 吳忠 保定

巨人網(wǎng)絡通訊聲明:本文標題《用JSP下載word文件(不會直接用IE打開)》,本文關鍵詞  用,JSP,下載,word,文件,不會,;如發(fā)現(xiàn)本文內(nèi)容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《用JSP下載word文件(不會直接用IE打開)》相關的同類信息!
  • 本頁收集關于用JSP下載word文件(不會直接用IE打開)的相關信息資訊供網(wǎng)民參考!
  • 推薦文章