溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

如何利用java在IE中打開Excel

發(fā)布時間:2021-08-25 18:45:14 來源:億速云 閱讀:201 作者:chen 欄目:編程語言

本篇內(nèi)容主要講解“如何利用java在IE中打開Excel”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“如何利用java在IE中打開Excel”吧!

java 代碼:

  1. publicclass TestOpenExcel extends HttpServlet {  

  2.  

  3. privatestaticfinal String url = "D:/test.xls";  

  4.  

  5. protectedvoid doGet(HttpServletRequest request,  

  6.   HttpServletResponse response) throws ServletException, IOException {  

  7.  

  8.  /**

  9.   * setContentType設(shè)置MIME類型,Acrobat

  10.   * PDF文件為"application/pdf",WORD文件為:"application/msword",

  11.   * EXCEL文件為:"application/vnd.ms-excel"。

  12.   */  

  13.  response.setContentType("application/vnd.ms-excel");  

  14.  /**

  15.   * setHeader設(shè)置打開方式,具體為:inline為在瀏覽器中打開,attachment單獨(dú)打開。

  16.   */  

  17. response.setHeader("Content-disposition", "inline;filename="" + "test.xls"+ "";");  

  18.  

  19.  ServletOutputStream sos = response.getOutputStream();  

  20.  FileInputStream fis = new FileInputStream(url);    

  21.    

  22.  BufferedOutputStream bos = new BufferedOutputStream(sos);    

  23.  byte[] bytes = newbyte[8192];    

  24.  bos.write(bytes, 0, fis.read(bytes));  

  25.  fis.close();    

  26.  sos.close();    

  27.  bos.close();  

  28.  

  29.  

  30. }  

  31.  

  32.  

  33. protectedvoid doPost(HttpServletRequest request,  

  34.   HttpServletResponse response) throws ServletException, IOException {  

  35.  doGet(request, response);  

  36. }  

  37.  

  38. }  

到此,相信大家對“如何利用java在IE中打開Excel”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI