contentType的值
".dwf": "Application/x-dwf";
".pdf": "Application/pdf";
".doc": "Application/vnd.ms-word";
".ppt": "Application/vnd.ms-powerpoint";
".pps": "Application/vnd.ms-powerpoint";
".xls": "Application/vnd.ms-excel";
default: "Application/octet-stream";
jsp页面
<%@ page language="java" contentType="application/vnd.ms-word; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<%
String fileName="w说的.doc";
fileName=java.net.URLEncoder.encode(fileName, "UTF-8");
response.setHeader("Content-disposition","attachment;filename="+fileName);
request.setAttribute("www","2222");
%>
</head>
<c:import url="/testWS.do?method=test"></c:import>
<body>
</body>
</html>
注意:1、保存文件乱码问题
通过java.net.URLEncoder.encode(fileName,"UTF-8");解决
2、头部:contentType="application/vnd.ms-word; charset=UTF-8",最好指明文件类型。若不指定也可以,建议指定
3、<c:import>用法,是可以把request中设置的www属性值传递给url