下载方法:

@RequestMapping(value = "/download.htm")
    public void downLoadFile(String id,HttpServletResponse res){
    if(){
    
    }else{
    res.setContentType("text/html; charset=UTF-8");//注意text/html,和application/html
    res.getWriter().print("<html><body><script type='text/javascript'>alert('无权下载文件!');</script></body></html>");
    res.getWriter().close();
    }
}

  

  

相关文章:

  • 2021-08-08
  • 2022-01-12
  • 2022-12-23
  • 2021-11-10
  • 2022-12-23
  • 2022-12-23
  • 2021-11-26
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-06-06
  • 2022-02-11
  • 2021-06-27
  • 2022-12-23
  • 2021-10-23
相关资源
相似解决方案