当前位置: 代码迷 >> Web前端 >> HttpServletResponse 上载代码
  详细解决方案

HttpServletResponse 上载代码

热度:451   发布时间:2012-09-12 09:21:30.0
HttpServletResponse 下载代码
response.setContentType("application/*");
		response.setHeader("Content-Disposition", "attachment;filename="+expert2ArticleFile.getYsmc());
		OutputStream os = response.getOutputStream();
		while(-1 !=(length=fis.read(buffer))) {
			os.write(buffer, 0, length);
		}
		os.flush();
		os.close();

?

获得绝对地址

request.getSession().getServletContext().getRealPath("/images");

?

Struts2获得 HttpServletRequest

HttpServletRequest request = (HttpServletRequest)ActionContext.getContext().get(ServletActionContext.HTTP_REQUEST);

?