设置html文件响应头

原写法:

response.addHeader(
				"Content-Disposition",
				"attachment;filename="
						+ new String(fileStr.substring(fileStr.lastIndexOf(File.separator) + 1)
								.getBytes("gb2312"), "ISO8859-1"));

 IE浏览器总是提示下载,

最后发现是由于:attachment 的原因,去掉即可正常返回

猜你喜欢

转载自lyjilu.iteye.com/blog/1860311