%@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 ( "出现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插入至数据库的方法
- Jsp中的table多表头导出excel文件具体实现
- jsp实现针对excel及word文档的打印方法