程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> jsp打開word

jsp打開word

編輯:關於JSP

<%@ page language="java" contentType="application/msword;charset=GBK"%> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <%@page import="java.io.File"%> <%@page import="java.io.OutputStream"%> <%@page import="java.io.InputStream"%> <%@page import="java.io.FileInputStream"%> <html> <body> <%  try{  String fileName=request.getRealPath("/")+"/domain/erp組織機構樹使用.doc";    System.out.println("====="+fileName);    File wordFile = new File(fileName);    response.reset();         response.setContentType( "application/msword ");   response.setHeader( "Content-Disposition ", "inline;   filename= "+wordFile.getName());     InputStream is =new FileInputStream(wordFile);     OutputStream os = response.getOutputStream();     int byteread;   byte[] buffer=new byte[1024];     while((byteread=is.read(buffer))!=-1){    os.write(buffer,0,byteread);   }     os.flush();  os.close();  os.close(); }catch(Exception e){  e.printStackTrace(); } %> </body> </html>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved