实现图片上传 
  用户必须能够上传图片,因此需要文件上传的功能。比较常见的文件上传组件有Commons FileUpload(http://jakarta.apache.org/commons/fileupload/a>)和COS FileUpload(http://www.servlets.com/cos),Spring已经完全集成了这两种组件,这里我们选择Commons FileUpload。 
  由于Post一个包含文件上传的Form会以multipart/form-data请求发送给服务器,必须明确告诉DispatcherServlet如何处理MultipartRequest。首先在dispatcher-servlet.xml中声明一个MultipartResolver:

xml 代码
  1. <bean id="multipartResolver"
  2. class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
  3. <!-- 设置上传文件的最大尺寸为1MB -->
  4. <property name="maxUploadSize">
  5. <value>1048576</value>
  6. </property>
  7. </bean>

这样一旦某个Request是一个MultipartRequest,它就会首先被MultipartResolver处理,然后再转发相应的Controller。 
在UploadImageController中,将HttpServletRequest转型为MultipartHttpServletRequest,就能非常方便地得到文件名和文件内容:

java 代码
  1. public ModelAndView handleRequest(HttpServletRequest request,
  2. HttpServletResponse response) throws Exception {
  3. // 转型为MultipartHttpRequest:
  4. MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request;
  5. // 获得文件:
  6. MultipartFile file = multipartRequest.getFile(" file ");
  7. // 获得文件名:
  8. String filename = file.getOriginalFilename();
  9. // 获得输入流:
  10. InputStream input = file.getInputStream();
  11. // 写入文件
  12. // 或者:
  13. File source = new File(localfileName.toString());
  14. multipartFile.transferTo(source);
  15. }

生成缩略图 (目录)
  当用户上传了图片后,必须生成缩略图以便用户能快速浏览。我们不需借助第三方软件,JDK标准库就包含了图像处理的API。我们把一张图片按比例缩放到120X120大小,以下是关键代码:

java 代码
  1. public static void createPreviewImage(String srcFile, String destFile) {
  2. try {
  3. File fi = new File(srcFile); // src
  4. File fo = new File(destFile); // dest
  5. BufferedImage bis = ImageIO.read(fi);
  6. int w = bis.getWidth();
  7. int h = bis.getHeight();
  8. double scale = (double) w / h;
  9. int nw = IMAGE_SIZE; // final int IMAGE_SIZE = 120;
  10. int nh = (nw * h) / w;
  11. if (nh > IMAGE_SIZE) {
  12. nh = IMAGE_SIZE;
  13. nw = (nh * w) / h;
  14. }
  15. double sx = (double) nw / w;
  16. double sy = (double) nh / h;
  17. transform.setToScale(sx, sy);
  18. AffineTransformOp ato = new AffineTransformOp(transform, null);
  19. BufferedImage bid = new BufferedImage(nw, nh,
  20. BufferedImage.TYPE_3BYTE_BGR);
  21. ato.filter(bis, bid);
  22. ImageIO.write(bid, " jpeg ", fo);
  23. catch (Exception e) {
  24. e.printStackTrace();
  25. throw new RuntimeException(
  26. " Failed in create preview image. Error:  "
  27. + e.getMessage());
  28. }
  29. }

最新文章

  1. ubantu php7.0版本降级到php5.6
  2. WinForm中跨线程操作控件
  3. 51nod 1471 小S的兴趣 sqrt
  4. MySql数据类型详解
  5. Mingyang.net:org.springframework.context.annotation.ConflictingBeanDefinitionException
  6. Sqli-labs less 31
  7. Chapter10:泛型算法
  8. 题解西电OJ (Problem 1004 -亚特兰提斯)--最小生成树
  9. readmine项目管理和缺陷跟踪工具
  10. [Network]Transport Layer
  11. 【Socket编程】通过Socket实现TCP编程
  12. PL/SQL连接数据库时报错12154
  13. 初学Django项目可能会遇到的问题
  14. 以编程方式使用 Microsoft Office Visio 2003 ActiveX 控件
  15. 多节点通过PPP连接,节点/用户/客户机之间互相访问ping
  16. babel-polyfill使用与性能优化
  17. asp.net mvc &amp;&amp; asp.net 页面跳转
  18. 反卷积(deconvolution)
  19. JavaScript中的slice函数
  20. NRF24L01 射频收发 使用方法

热门文章

  1. 硬件(MAC)地址的概念及作用
  2. FPGA研发之道(25)-管脚
  3. vm中安装ubuntu16
  4. Eclipse开发C/C++之使用技巧小结,写给新手
  5. A - Bi-shoe and Phi-shoe 欧拉函数
  6. poj 1470(LCA)
  7. React ES5 (createClass) 和 ES6 (class)
  8. gitlab报错收集
  9. ubuntu虚拟化平台libvrit-bin
  10. LeetCode Problem 2:Two Sum