response.setContentType()的String参数及对应类型

  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  



附件下载的话,需要做如下设置:
response.setContentType("application/octet-stream");
response.setHeader("Content-disposition", "attachment;filename=" + fileName);
response.setHeader("content-disposition", "attachment;filename="+URLEncoder.encode(file.getName(),"utf-8"));  

你可能感兴趣的:(J2EE/WEB)