如何利用java在IE中打开Excel
本篇内容主要讲解“如何利用java在IE中打开Excel”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“如何利用java在IE中打开Excel”吧!
成都创新互联公司是少有的成都网站设计、成都网站建设、营销型企业网站、小程序制作、手机APP,开发、制作、设计、友情链接、推广优化一站式服务网络公司,2013年开创至今,坚持透明化,价格低,无套路经营理念。让网页惊喜每一位访客多年来深受用户好评
java 代码: publicclass TestOpenExcel extends HttpServlet { privatestaticfinal String url = "D:/test.xls"; protectedvoid doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { /** * setContentType设置MIME类型,Acrobat * PDF文件为"application/pdf",WORD文件为:"application/msword", * EXCEL文件为:"application/vnd.ms-excel"。 */ response.setContentType("application/vnd.ms-excel"); /** * setHeader设置打开方式,具体为:inline为在浏览器中打开,attachment单独打开。 */ response.setHeader("Content-disposition", "inline;filename="" + "test.xls"+ "";"); ServletOutputStream sos = response.getOutputStream(); FileInputStream fis = new FileInputStream(url); BufferedOutputStream bos = new BufferedOutputStream(sos); byte[] bytes = newbyte[8192]; bos.write(bytes, 0, fis.read(bytes)); fis.close(); sos.close(); bos.close(); } protectedvoid doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { doGet(request, response); } }
|
到此,相信大家对“如何利用java在IE中打开Excel”有了更深的了解,不妨来实际操作一番吧!这里是创新互联网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
本文题目:如何利用java在IE中打开Excel
文章源于:
http://ybzwz.com/article/geecge.html