zoukankan      html  css  js  c++  java
  • springMVC文件上传与下载

    
    
    /**
    *文件上传
    */
     1 @RequestMapping(value = { "download" })
     2 @ResponseBody
     3     public void download(
     4             HttpServletResponse response, HttpServletRequest request) throws IOException {
     5         String path=request.getServletContext().getRealPath("/")+"WEB-INF/download/erep/";
     6         String fileName="模板.xls";
     7         File file1=new File(path,fileName);
     8         response.setCharacterEncoding("UTF-8");
     9         //response.setContentType("application/x-msdownload");
    10         //response.setContentType("application/octet-stream; charset=utf-8");
    11         response.setHeader("Content-Disposition", "attachment; filename="+new String(fileName.getBytes("gbk"),"iso-8859-1"));
    12         response.setHeader("Content-Length", String.valueOf(file1.length()));
    13         ServletOutputStream out = response.getOutputStream();
    14         byte[] array = FileUtils.readFileToByteArray(file1);
    15         out.write(array);
    16         out.flush();
    17         out.close();
    18         
    19         
    20     }
         /**
          *文件上传
          */
         @RequestMapping(value = { "upload" }) @ResponseBody public void upload(@RequestParam("file") MultipartFile file, HttpServletResponse response, HttpServletRequest request) throws IOException { String name = file.getOriginalFilename(); String filename=UUID.randomUUID().toString()+name; String path=request.getServletContext().getRealPath("/")+"WEB-INF/download/erep/"; FileUtils.copyInputStreamToFile(file.getInputStream(), new File(path+filename)); }

      

  • 相关阅读:
    Spring IOC三种注入方式(接口注入、setter注入、构造器注入)(摘抄)
    java设计模式之代理模式
    JAVA学习中好网站
    程序员学习能力提升三要素
    ognl中的#、%和$
    二级缓存
    hibernate主键自动生成
    专科考研学校要求一览表
    Chapter 3: Connector(连接器)
    Chapter 2: A Simple Servlet Container
  • 原文地址:https://www.cnblogs.com/mxggx/p/13608144.html
Copyright © 2011-2022 走看看