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

实现上传图片功能在Springmvc中很好实现。现在我将会展现完整例子。

开始需要在pom.xml加入几个jar,分别是:

[java] view plain copy

  1. <dependency>
  2. <groupId>commons-fileupload</groupId>
  3. <artifactId>commons-fileupload</artifactId>
  4. <version>1.3.1</version>
  5. </dependency>
  6. <dependency>
  7. <groupId>commons-io</groupId>
  8. <artifactId>commons-io</artifactId>
  9. <version>2.4</version>
  10. </dependency>

接下来,在Springmvc的配置加入上传文件的配置(PS:我把springmvc的完整配置都展现出来):

[html] view plain copy

  1. <!--默认的mvc注解映射的支持 -->
  2. <mvc:annotation-driven/>
  3. <!-- 处理对静态资源的请求 -->
  4. <mvc:resources location="/static/" mapping="/static/**" />
  5. <!-- 扫描注解 -->
  6. <context:component-scan base-package="com.ztz.springmvc.controller"/>
  7. <!-- 视图解析器 -->
  8. <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  9. <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
  10. <!-- 前缀 -->
  11. <property name="prefix" value="/WEB-INF/jsp/"/>
  12. <!-- 后缀 -->
  13. <property name="suffix" value=".jsp"/>
  14. </bean>
  15. <!-- 上传文件 -->
  16. <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
  17. <property name="defaultEncoding" value="utf-8"/>
  18. <!-- 最大内存大小 -->
  19. <property name="maxInMemorySize" value="10240"/>
  20. <!-- 最大文件大小,-1为不限制大小 -->
  21. <property name="maxUploadSize" value="-1"/>
  22. </bean>

一、 单文件上传

当然在一个表单中,需要添加enctype="multipart/form-data",一个表单有文件域,肯定也有基本的文本框,可以一次性提交,springmvc能给我们区别出来,来做不同的处理。首先看下普通的model

[java] view plain copy

  1. package com.ztz.springmvc.model;
  2. public class Users {
  3. private String name;
  4. private String password;
  5. //省略get set方法
  6. //重写toString()方便测试
  7. @Override
  8. public String toString() {
  9. return "Users [name=" + name + ", password=" + password +  "]";
  10. }
  11. }

这个是表单的JSP页面:

[java] view plain copy

  1. <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
  2. <%@taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>
  3. <%
  4. String path = request.getContextPath();
  5. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  6. request.setAttribute("basePath", basePath);
  7. %>
  8. <!DOCTYPE html>
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  12. <title>FileUpload</title>
  13. </head>
  14. <body>
  15. <form action="${basePath}file/upload" method="post" enctype="multipart/form-data">
  16. <label>用户名:</label><input type="text" name="name"/><br/>
  17. <label>密 码:</label><input type="password" name="password"/><br/>
  18. <label>头 像</label><input type="file" name="file"/><br/>
  19. <input type="submit" value="提  交"/>
  20. </form>
  21. </body>
  22. </html>

上传成功跳转的JSP页面,并且显示出上传图片:

[java] view plain copy

  1. <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
  2. <%@taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>
  3. <%
  4. String path = request.getContextPath();
  5. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  6. request.setAttribute("basePath", basePath);
  7. %>
  8. <!DOCTYPE html>
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  12. <title>头像</title>
  13. </head>
  14. <body>
  15. <img src="${basePath}${imagesPath}">
  16. </body>
  17. </html>

最后是Controller:

[java] view plain copy

  1. package com.ztz.springmvc.controller;
  2. import java.io.File;
  3. import java.util.UUID;
  4. import javax.servlet.http.HttpServletRequest;
  5. import org.springframework.stereotype.Controller;
  6. import org.springframework.web.bind.annotation.RequestMapping;
  7. import org.springframework.web.bind.annotation.RequestMethod;
  8. import org.springframework.web.bind.annotation.RequestParam;
  9. import org.springframework.web.multipart.MultipartFile;
  10. import com.ztz.springmvc.model.Users;
  11. @Controller
  12. @RequestMapping("/file")
  13. public class FileUploadController {
  14. @RequestMapping(value="/upload",method=RequestMethod.POST)
  15. private String fildUpload(Users users ,@RequestParam(value="file",required=false) MultipartFile file,
  16. HttpServletRequest request)throws Exception{
  17. //基本表单
  18. System.out.println(users.toString());
  19. //获得物理路径webapp所在路径
  20. String pathRoot = request.getSession().getServletContext().getRealPath("");
  21. String path="";
  22. if(!file.isEmpty()){
  23. //生成uuid作为文件名称
  24. String uuid = UUID.randomUUID().toString().replaceAll("-","");
  25. //获得文件类型(可以判断如果不是图片,禁止上传)
  26. String contentType=file.getContentType();
  27. //获得文件后缀名称
  28. String imageName=contentType.substring(contentType.indexOf("/")+1);
  29. path="/static/images/"+uuid+"."+imageName;
  30. file.transferTo(new File(pathRoot+path));
  31. }
  32. System.out.println(path);
  33. request.setAttribute("imagesPath", path);
  34. return "success";
  35. }
  36. //因为我的JSP在WEB-INF目录下面,浏览器无法直接访问
  37. @RequestMapping(value="/forward")
  38. private String forward(){
  39. return "index";
  40. }
  41. }

点击提交控制台输出:

Users [name=fileupload, password=test]

浏览器显示结果:

二、 多图片上传

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

[java] view plain copy

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

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

[java] view plain copy

  1. <body>
  2. <c:forEach items="${imagesPathList}" var="image">
  3. <img src="${basePath}${image}"><br/>
  4. </c:forEach>
  5. </body>

控制层代码如下:

[java] view plain copy

  1. package com.ztz.springmvc.controller;
  2. import java.io.File;
  3. import java.util.ArrayList;
  4. import java.util.List;
  5. import java.util.UUID;
  6. import javax.servlet.http.HttpServletRequest;
  7. import org.springframework.stereotype.Controller;
  8. import org.springframework.web.bind.annotation.RequestMapping;
  9. import org.springframework.web.bind.annotation.RequestMethod;
  10. import org.springframework.web.bind.annotation.RequestParam;
  11. import org.springframework.web.multipart.MultipartFile;
  12. import com.ztz.springmvc.model.Users;
  13. @Controller
  14. @RequestMapping("/file")
  15. public class FileUploadController {
  16. @RequestMapping(value="/upload",method=RequestMethod.POST)
  17. private String fildUpload(Users users ,@RequestParam(value="file",required=false) MultipartFile[] file,
  18. HttpServletRequest request)throws Exception{
  19. //基本表单
  20. System.out.println(users.toString());
  21. //获得物理路径webapp所在路径
  22. String pathRoot = request.getSession().getServletContext().getRealPath("");
  23. String path="";
  24. List<String> listImagePath=new ArrayList<String>();
  25. for (MultipartFile mf : file) {
  26. if(!mf.isEmpty()){
  27. //生成uuid作为文件名称
  28. String uuid = UUID.randomUUID().toString().replaceAll("-","");
  29. //获得文件类型(可以判断如果不是图片,禁止上传)
  30. String contentType=mf.getContentType();
  31. //获得文件后缀名称
  32. String imageName=contentType.substring(contentType.indexOf("/")+1);
  33. path="/static/images/"+uuid+"."+imageName;
  34. mf.transferTo(new File(pathRoot+path));
  35. listImagePath.add(path);
  36. }
  37. }
  38. System.out.println(path);
  39. request.setAttribute("imagesPathList", listImagePath);
  40. return "success";
  41. }
  42. //因为我的JSP在WEB-INF目录下面,浏览器无法直接访问
  43. @RequestMapping(value="/forward")
  44. private String forward(){
  45. return "index";
  46. }
  47. }

时间: 2024-12-20 01:04:41

springmvc上传图片并显示图片--支持多图片上传的相关文章

mvc上传图片预览,支持多图上传

@using (Html.BeginForm("Index_load", "Index_", new { }, FormMethod.Post, new { @id = "form0", @class = "form-horizontal", @enctype = "multipart/form-data" })) {     <div>           <input type=&qu

PHP 图片上传工具类(支持多文件上传)

====================ImageUploadTool======================== <?php class ImageUploadTool { private $file; //文件信息 private $fileList; //文件列表 private $inputName; //标签名称 private $uploadPath; //上传路径 private $fileMaxSize; //最大尺寸 private $uploadFiles; //上传文件

移动前端—H5实现图片先压缩再上传

在做移动端图片上传的时候,用户传的都是手机本地图片,而本地图片一般都相对比较大,拿iphone6来说,平时拍很多图片都是一两M的,如果直接这样上传,那图片就太大了,如果用户用的是移动流量,完全把图片上传显然不是一个好办法. 目前来说,HTML5的各种新API都在移动端的webkit上得到了较好的实现.根据查看caniuse,本demo里使用到的FileReader.Blob.Formdata对象均已在大部分移动设备浏览器中得到了实现(safari6.0+.android 3.0+),所以直接在前

适应各浏览器图片裁剪无刷新上传js插件(转)

看到一篇兼容性很强的图片无刷新裁剪上传的帖子,感觉很棒.分享下!~ 废话不多说,上效果图. 一.首先建立如下的一个page <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <

php图片处理之图片转为base64格式上传

我们在开发系统时,处理图片上传是不可避免的,使用thinkphp的肯定很熟悉 import("@.ORG.UploadFile"); 的上传方式. 今天我们来讲一个使用html5 base64上传图片的方法. 其实就是用到html5 FileReader的接口,既然是html5的,所支持的浏览器我就不多说啦,老生常谈的问题了,远离IE,珍惜生命. 先扔个demo出来给大伙体验体验哈. http://t.lanchenglv.com/lan/index.php/Base64/images

js实现图片预览以及上传

HTML 代码: <input  type="file" id="fileid" onchange="filesize(this)" runat="server" size="80" Width="200px" Height="25px"/>  <input  type="hidden" id="hidden_s&quo

在ASP.NET中实现图片、视频文件上传方式

一.图片 1.在前端用<asp:FileUpload ID="UpImgName" runat="server"/>控件 2.在后台.cs中写上 protected void btnSubmit_Click(object sender,EventArgs e) { string strImgPath=string.Empty; string strDateTime=dateTime.Now.Tostring("yyyyMMddhhmmss&qu

【Android实战】----基于Retrofit实现多图片/文件、图文上传

一.再次膜拜下Retrofit Retrofit无论从性能还是使用方便性上都很屌!!!,本文不去介绍其运作原理(虽然很想搞明白),后面会出专题文章解析Retrofit的内部原理:本文只是从使用上解析Retrofit实现多图片/文件.图文上传的功能. 二.概念介绍 1)注解@Multipart 从字面上理解就是与多媒体文件相关的,没错,图片.文件等的上传都要用到该注解,其中每个部分需要使用@Part来注解..看其注释 /** * Denotes that the request body is m

处理带说明信息的图片与处理文件上传 四(62)

一 .处理带说明信息的图片与处理文件上传  void delete()           删除保存在临时目录中的文件.     String getContentType()  获取文档的类型           Returns the content type passed by the browser or null if not defined. String getFieldName() 获取字段的名称,即name=xxxx           Returns the name of

在线修改图片尺寸缩放网站(完美解决图片过大无法上传问题)

在线修改图片尺寸缩放网站(完美解决图片过大无法上传问题) http://pic.sdodo.com/tool/picadjust/ http://www.zhengzong.cn/bbsxp/thread-8136-1-1.html 一次使用windows xp用头像是用到 因头像尺寸标准为48*48 Look! 成功修改的小猫咪! Windows Xp / 2003用户头像位置 C:\Documents and Settings\All Users\Application Data\Micro