文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

SpringMVC+Ajax如何实现文件批量上传和下载功能

2023-06-08 06:49

关注

小编给大家分享一下SpringMVC+Ajax如何实现文件批量上传和下载功能,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

上传form:

<form id="uploadfiles" enctype="multipart/form-data">    <input type="file" multiple="multiple" id="file_upload" name="file_upload" />     <input type="button" value="上传" onclick="upload()" /></form>

上传Ajax:

<script type="text/javascript">function upload(){  var formData = new FormData($( "#uploadfiles" )[0]);   $.ajax({      type: "post",      url: "./path/upload",      dataType: "json",      data: formData,             contentType : false,              processData : false,      success: function(data){//从后端返回数据进行处理       if(data){         alert("上传成功!");       }else{         alert("上传失败!");       }      },      error: function(err) {//提交出错        $("#msg").html(JSON.stringify(err));//打出响应信息        alert("服务器无响应");       }     });}</script>

spring.xml配置加上:

<!-- 配置文件上传 -->  <bean id="multipartResolver"    class="org.springframework.web.multipart.commons.CommonsMultipartResolver">    <!-- 默认编码 -->    <property name="defaultEncoding" value="utf-8" />    <!-- 文件大小最大值 -->    <property name="maxUploadSize" value="10485760000" />    <!-- 内存中的最大值 -->    <property name="maxInMemorySize" value="40960" />  </bean>controller:  @RequestMapping(value = "/upload", produces = "application/json;charset=UTF-8")  public @ResponseBody  boolean uploadFiles(@RequestParam("file_upload") MultipartFile [] files) {    boolean result = false;    String realPath;    for(int i=0;i<files.length;i++){      if (!files[i].isEmpty()) {           String uniqueName=files[i].getOriginalFilename();//得到文件名          realPath="E:"+File.separator+uniqueName;//文件上传的路径这里为E盘          files[i].transferTo(new File(realPath));  // 转存文件          result = true;              } catch (Exception e) {           e.printStackTrace();         }       }    }    return result;  }

下载的jsp页面代码根据需求不同自己设计,这里给出controller代码:

  @RequestMapping(value = "/download")  public void downloadFiles(HttpServletResponse response) {    String str= request.getParameter("rows");//下载文件信息,包括文件名、存储路径等    JSONArray path=(JSONArray) JSONArray.parse(request.getParameter("rows"));    Path paths[]=new Path[path.size()];    paths = JSONArray.parseArray(str, Path.class).toArray(paths);    String uri = "d:"+ File.separator + "mldn.zip";//临时文件存储路径    File zipFile = new File(uri) ;  // 定义压缩文件名称     ZipOutputStream zipOut = null;// 声明压缩流对象     InputStream input = null;    //将要压缩的文件加入到压缩输出流中    try {      zipOut = new ZipOutputStream(new FileOutputStream(zipFile));    } catch (FileNotFoundException e) {      e.printStackTrace();    }    for(int i = 0;i<paths.length;i++){      File file = new File(paths[i].getUri()+File.separator+paths[i].getFilename());      try {        input = new FileInputStream(file) ;// 定义文件的输入流         zipOut.putNextEntry(new ZipEntry(file.getName())) ; // 设置ZipEntry对象       } catch (Exception e) {        e.printStackTrace();      }     }    //将文件写入到压缩文件中    int temp = 0 ;     try {      while((temp=input.read())!=-1){ // 读取内容         zipOut.write(temp) ;  // 写到压缩文件中       }    } catch (IOException e) {      e.printStackTrace();    }finally{       try {        input.close() ;        zipOut.close() ;       } catch (IOException e) {        e.printStackTrace();      }     }    try {      // 以流的形式下载文件。      BufferedInputStream fis = new BufferedInputStream(new FileInputStream(zipFile));      byte[] buffer = new byte[fis.available()];      fis.read(buffer);      fis.close();      // 清空response      response.reset();      OutputStream toClient = new BufferedOutputStream(response.getOutputStream());      response.setContentType("application/x-msdownload;");       response.setHeader("Content-Disposition", "attachment;filename=" + zipFile.getName());      toClient.write(buffer);      toClient.flush();      toClient.close();      zipFile.delete();    //将生成的服务器端文件删除    }     catch (IOException ex) {      ex.printStackTrace();    }    }

将多个文件打成一个压缩包下载,然后将生成的临时压缩文件删除。

下载页面如果用Ajax提交请求的话要注意:ajax函数的返回类型只有xml、text、json、html等类型,没有“流”类型,所以我们要实现ajax下载,不能够使用相应的ajax函数进行文件下载。但可以用js生成一个form,用这个form提交参数,并返回“流”类型的数据。

例子:

function download(){    var form=$("<form>");//定义一个form表单    form.attr("style","display:none");    form.attr("target","");    form.attr("method","post");    form.attr("action","./path/download");//请求url    var input1=$("<input>");    input1.attr("type","hidden");    input1.attr("name","rows");//设置属性的名字    input1.attr("value",“test”);//设置属性的值    $("body").append(form);//将表单放置在web中    form.append(input1);    form.submit();//表单提交                     }

以上是“SpringMVC+Ajax如何实现文件批量上传和下载功能”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯