springmvc上传图片并显示图片--支持多图片上传- 转

、 多图片上传

springmvc实现多图片上传也很简单,我们把刚才的例子修改下,在加一个文件域,name的值还是相同

<body>  
<form action="${basePath}file/upload" method="post" enctype="multipart/form-data">  
    <label>用户名:</label><input type="text" name="name"/><br/>  
    <label>密 码:</label><input type="password" name="password"/><br/>  
    <label>头 像1</label><input type="file" name="file"/><br/>  
    <label>头 像2</label><input type="file" name="file"/><br/>  
    <input type="submit" value="提  交"/>  
</form>  
</body>  

展示图片来个循环,以便显示多张图片

<body>  
<c:forEach items="${imagesPathList}" var="image">  
    <img src="${basePath}${image}"><br/>  
</c:forEach>  
</body> 

控制层代码如下:

@Controller  
@RequestMapping("/file")  
public class FileUploadController {  
      
    @RequestMapping(value="/upload",method=RequestMethod.POST)  
    private String fildUpload(Users users ,@RequestParam(value="file",required=false) MultipartFile[] file,  
            HttpServletRequest request)throws Exception{  
        //基本表单   
        System.out.println(users.toString());  
          
        //获得物理路径webapp所在路径   
        String pathRoot = request.getSession().getServletContext().getRealPath("");  
        String path="";  
        List<String> listImagePath=new ArrayList<String>();  
        for (MultipartFile mf : file) {  
            if(!mf.isEmpty()){  
                //生成uuid作为文件名称   
                String uuid = UUID.randomUUID().toString().replaceAll("-","");  
                //获得文件类型(可以判断如果不是图片,禁止上传)   
                String contentType=mf.getContentType();  
                //获得文件后缀名称   
                String imageName=contentType.substring(contentType.indexOf("/")+1);  
                path="/static/images/"+uuid+"."+imageName;  
                mf.transferTo(new File(pathRoot+path));  
                listImagePath.add(path);  
            }  
        }  
        System.out.println(path);  
        request.setAttribute("imagesPathList", listImagePath);  
        return "success";  
    }  
    //因为我的JSP在WEB-INF目录下面,浏览器无法直接访问   
    @RequestMapping(value="/forward")  
    private String forward(){  
        return "index";  
    }  
}  
原文:http://blog.csdn.net/luckey_zh/article/details/46867957




  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值