快速业务通道

巧妙使用Spring对commons fileUpload的包装 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-18

巧妙使用Spring对commons fileUpload的包装

时间:2011-03-23 hbcui1984

以前简单使用过spring的文件上传,当时没深入研究,以为spring只能实现单个文件的上传,所以后来就又大致学了下commons fileupload组件。在最近的工作中,有同事提出,他在把commons fileupload组件集成到spring中时总是出错,然后我大致看了一下,发现是spring DispatcherServlet的缘故。然后google了一下,发现sping本身就包装了commons fileupload,并且很好用。

一、前台页面

我们的目标是要实现多文件上传,并且预先我并不知道客户要上传多少个文件。我们先写个jsp页面吧!要实现可以动态控制上传多少文件,基本代码如下:

<form method="post" action="./upload.do" enctype="multipart/form-data"> <div id="uploadDiv"> <input type="file" name="file1" /> </div> <input type="button" value="继续上传" onclick="javascript:btn_click();"> <input type="hidden" id="fileCount" name="fileCount" value="1"> <input type="submit" value="上传" /> </form>

要实现动态控制上传文件个数,我们需要使用javascript了。

function btn_click()...{ var fileNo=Number(document.getElementById(''fileCount'').value)+1; newDiv=document.createElement("div") newDiv.id="divFile"+fileNo; document.getElementById(''uploadDiv'').appendChild(newDiv) document.getElementById(''fileCount'').value=fileNo; newDiv.innerHTML="<input type=''file'' name=''file"+fileNo+"''>"; }

ok,现在我们的界面如下:

巧妙使用Spring对commons fileUpload的包装 - 编程入门网

图1

二、后台实现

1.前台我们搞定了,现在考虑一下后台处理吧!我写了一个Command Bean,非常简单,如下:

public class FUploadBean ...{ private byte[] file; public byte[] getFile() ...{ return file; } public void setFile(byte[] file) ...{ this.file = file; } }

在spring Web MVC模式中,必须定义一个Command对象,将其和Form表单绑定。这个command class需要在spring上下文中进行配置,可以作为controller的property进行配置。一会会在配置文件中看到相关配置。

巧妙使用Spring对commons fileUpload的包装(2)

时间:2011-03-23 hbcui1984

2.然后就是一个Controller

public class FUploadController extends SimpleFormController ...{ public ModelAndView onSubmit(HttpServletRequest request, HttpServletResponse res, Object obj, BindException errors) throws Exception ...{ MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request; int fileCount = Integer.parseInt(request.getParameter("fileCount")); for (int i = 1; i <= fileCount; i++) ...{ CommonsMultipartFile cFile = (CommonsMultipartFile) multipartRequest.getFile("file" + i); File uploadedFile = new File("E:/upload" + "/"+ cFile.getOriginalFilename()); FileCopyUtils.copy(cFile.getBytes(), uploadedFile); } return null; } // 注册一个spring的编辑器非常重要,没有这个方法,上传将不能进行 protected void initBinder(HttpServletRequest request, ServletRequestDataBinder binder) throws ServletException ...{ binder.registerCustomEditor(byte[].cl

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号