用java在IE中打开Excel

闲来无事做的一个小例子:

java 代码
  1. public class TestOpenExcel extends HttpServlet {   
  2.   
  3. private static final String url = "D:/test.xls";   
  4.   
  5. protected void doGet(HttpServletRequest request,   
  6.    HttpServletResponse response) throws ServletException, IOException {   
  7.   
  8.   /**  
  9.    * setContentType设置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设置打开方式,具体为:inline为在浏览器中打开,attachment单独打开。  
  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 = new byte[8192];     
  24.   bos.write(bytes, 0, fis.read(bytes));   
  25.   fis.close();    
  26.   sos.close();    
  27.   bos.close();   
  28.   
  29.   
  30.  }   
  31.   
  32.   
  33.  protected void doPost(HttpServletRequest request,   
  34.    HttpServletResponse response) throws ServletException, IOException {   
  35.   doGet(request, response);   
  36.  }   
  37.   
  38. }   
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值