springmvc图片文件上传接口
springmvc图片文件上传
用MultipartFile文件方式传输
Controller
package com.controller; import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List; import javax.annotation.PostConstruct;
import javax.annotation.Resource;
import javax.imageio.ImageIO; import org.apache.commons.lang3.StringUtils;
import org.apache.log4j.Logger;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.multipart.MultipartFile; import com.service.PictureService;
import com.utils.PictureUtils;
import com.entity.JsonResult;
import com.entity.SimpleJsonResult; @Controller
public class PictureController { private static final Logger logger = Logger.getLogger(PictureController.class); @Resource
private PictureService service; @Value("#{settings['picturePath']}")
private String PATH; /**
*
* 图片文件上传接口
*
* @param files
* 上传的文件图片数组
* @param childPath
* 子路径
* */
@RequestMapping(value = "baseSave", method = RequestMethod.POST)
@ResponseBody
public JsonResult save(@RequestParam(value = "file", required = false) MultipartFile[] files, String childPath) {
SimpleJsonResult result = new SimpleJsonResult(); // 自定义的一个输出类
if (files == null || files.length == 0) {
return result.setExecption("失败");
} for (MultipartFile file : files) {
if (file.isEmpty())
return result.setExecption("失败"); try {
if (ImageIO.read(file.getInputStream()) == null)
return result.setExecption(EXECPTION_0041);
} catch (IOException e) {
logger.error("图片文件读取失败");
}
} String name;
int size = 0;
List<String> url = new ArrayList<>(); String paths = PATH;
if (StringUtils.isNotBlank(childPath)) { if (childPath.equals(PictureUtils.HELPS) || childPath.equals(PictureUtils.NEWS)) {
paths = paths + childPath + File.separator; File filePath = new File(paths);
if (!filePath.exists())
filePath.mkdirs();
}
} for (MultipartFile file : files) {
try {
name = service.save(file, paths);
size++;
url.add(name);
} catch (IOException e) {
logger.error(e, e);
return "失败";
}
} return SimpleJsonResult.buildSuccessResult(url).setModel("number", size);
} @PostConstruct
public void init() {
File file = new File(PATH);
file.setWritable(true, false);
if (!file.exists())
file.mkdirs(); if (!file.canWrite()) {
logger.error(file.getAbsolutePath() + ":文件夹没有权限创建");
return;
} logger.info("filePath:" + PATH);
}
}
SimpleJsonResult 类格式
//SimpleJsonResult 类格式
/** public static SimpleJsonResult buildFailedSimpleJsonResult(IExceptionCode code) {
SimpleJsonResult result = new SimpleJsonResult();
result.setSuccess(false);
result.setMessage(code.getDescribe());
result.setCode(code.getCode());
return result;
} public static SimpleJsonResult buildSuccessSimpleJsonResult(IExceptionCode code) {
SimpleJsonResult result = new SimpleJsonResult();
result.setSuccess(true);
result.setMessage(code.getDescribe());
result.setCode(code.getCode());
return result;
} public static SimpleJsonResult build() {
SimpleJsonResult result = new SimpleJsonResult();
return result;
} public SimpleJsonResult setExecption(IExceptionCode code) {
if (code.getCode().equals("0"))
setSuccess(true);
else
setSuccess(false); this.code = code.getCode();
setMessage(code.getDescribe());
return this;
};
*/
service类实现
package com.service; import java.awt.image.BufferedImage;
import java.io.IOException;
import java.util.Random; import javax.annotation.Resource;
import javax.imageio.ImageIO; import org.apache.commons.codec.digest.DigestUtils;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.multipart.MultipartFile; import com.entity.Picture;
import com.mappers.PictureMapper;
import com.utils.PictureUtils; @Service
public class PictureService { @Resource
private PictureMapper mapper; private String no = "TP"; @Transactional(timeout = 3000)
public String save(MultipartFile file, String path) throws IOException {
//Picture width and height
BufferedImage bff =ImageIO.read(file.getInputStream());
Picture entity = new Picture(); //实体类
String fileName = file.getOriginalFilename(); String name = this.getName(fileName, file.getSize());
name = PictureUtils.save(file, path, name); //图片保存到服务器地址中 entity.setOriginal(fileName); // 上传的名称
entity.setName(name); // 名称
entity.setWidth(bff.getWidth()); // 宽
entity.setHeight(bff.getHeight()); //高
mapper.insert(entity); //添加进去
return name;
} private String getName(String fileName, long size) { //重命名
StringBuilder sb = new StringBuilder();
String[] split = fileName.split("\\."); String suffix = split[split.length - 1]; sb.append(fileName).append(System.currentTimeMillis()).append(new Random().nextFloat())
.append(Thread.currentThread().getId());
String name = DigestUtils.md2Hex(sb.toString()).toUpperCase();
return sb.delete(0, sb.length()).append(no).append(name).append(".").append(suffix).toString();
}
}
PictureUtils 图片保存工具类
package com.utils;
import java.io.IOException;
import org.springframework.web.multipart.MultipartFile;
import net.coobird.thumbnailator.Thumbnails;
public class PictureUtils {
public static long SIZE = 100L << 10;
public static String SUFFIX_JPG = "jpg";
public static String NEWS = "news";
public static String HELPS = "helps";
//保存图片
public static String save(MultipartFile file, String path, String name) throws IOException {
int i = 1;
long size = file.getSize();
Thumbnails.of(file.getInputStream()).scale(1).outputQuality(1f)
.toFile(path + i + "_" + name);
if (size > SIZE) {
float ratio = 1.0f / (float) (size / SIZE);
++i;
Thumbnails.of(file.getInputStream()).scale(1).outputQuality(ratio)
.toFile(path + i + "_" + name);
}
return i + "_" + name;
}
// 设置宽高保存
public static String save(MultipartFile file, String path, String name, int width, int heigth, boolean compresseion)
throws IOException {
int i = 1;
long size = file.getSize();
Thumbnails.of(file.getInputStream()).size(width, heigth).outputQuality(1f)
.toFile(path + i + "_" + name);
if (size > SIZE) {
float ratio = 1f / (float) (size / SIZE);
++i;
Thumbnails.of(file.getInputStream()).size(width, heigth).outputQuality(ratio)
.toFile(path + i + "_" + name);
}
return i + "_" + name;
}
}
实体类
package com.entity;
public class Picture {
private static final long serialVersionUID = 1L;
@Column
private String original;
@Column
private String name;
@Column
private Integer width;
@Column
private Integer height;
public Picture() {
super();
}
}
配置文件
No=TP
jpg=.jpg
picturePath=/picture/
偶遇晨光
2016-05-30
springmvc图片文件上传接口的更多相关文章
- SpringMvc MultipartFile 图片文件上传
spring-servlet.xml <!-- SpringMVC上传文件时,需要配置MultipartResolver处理器 --> <bean id="multipar ...
- SpringMVC+ajax文件上传实例教程
原文地址:https://blog.csdn.net/weixin_41092717/article/details/81080152 文件上传文件上传是项目开发中最常见的功能.为了能上传文件,必须将 ...
- SpringMVC学习--文件上传
简介 文件上传是web开发中常见的需求之一,springMVC将文件上传进行了集成,可以方便快捷的进行开发. springmvc中对多部件类型解析 在 页面form中提交enctype="m ...
- .Net Core 图片文件上传下载
当下.Net Core项目可是如雨后春笋一般发展起来,作为.Net大军中的一员,我热忱地拥抱了.Net Core并且积极使用其进行业务的开发,我们先介绍下.Net Core项目下实现文件上传下载接口. ...
- springmvc实现文件上传
springmvc实现文件上传 多数文件上传都是通过表单形式提交给后台服务器的,因此,要实现文件上传功能,就需要提供一个文件上传的表单,而该表单就要满足以下3个条件 (1)form表彰的method属 ...
- 【SpringMVC】SpringMVC 实现文件上传
SpringMVC 实现文件上传 文章源码 文件上传回顾 查看 JavaWeb 阶段的文件上传下载 实现步骤: 客户端: 发送 post 请求,告诉服务器要上传什么文件 服务器: 要有一个 form ...
- Spring +SpringMVC 实现文件上传功能。。。
要实现Spring +SpringMVC 实现文件上传功能. 第一步:下载 第二步: 新建一个web项目导入Spring 和SpringMVC的jar包(在MyEclipse里有自动生成spring ...
- SpringMVC之文件上传异常处理
一般情况下,对上传的文件会进行大小的限制.如果超过指定大小时会抛出异常,一般会对异常进行捕获并友好的显示出来.以下用SpringMVC之文件上传进行完善. 首先配置CommonsMultipartRe ...
- jmeter测试文件上传接口报错:connection reset by peer: socket write error
最近在对文件上传接口性能测试时,设置150线程数并发时,总会出现以下错误:connection reset by peer: socket write error 在网上搜索了一下,得到的原因有这些: ...
随机推荐
- Java中类的数据成员的初始化顺序
对于单一类: 属性初始化 ---> 按顺序执行静态初始化块(只能操作静态属性) ---> 按顺序执行初始化块 ---> 构造方法 对于存在继承关系的类: 父类属性初始化 ---> ...
- php的一些问题
1.关于php <? php echo "hello world"; include "./index.html"; require "./in ...
- 浏览器与web客户端的HTTP交互过程
未经许可谢绝以任何形式对本文内容进行转载! HTTP协议是常见的几种应用层协议之一,当我们用浏览器和web客户端进行交互时html页面等内容的传输都是依靠该协议完成的.值得注意的是,HTTP使用的是T ...
- Myeclipse添加外部Tomcat出现启动故障的问题解决
故障: 1.java.lang.IllegalStateException: No output folder 分析:work文件夹无写权限 解决:找到tomcat的安装文件夹,右键点击work文件夹 ...
- Struts2中通过超链接传参数要注意的问题
写到分页的功能,在传递页码pageNo的时候遇到了参数接收不正确的问题,我本来在action中是定义了一个pageNo字符串参数和一个Page类参数,Page是一个封装了页面要显示的数据集合和页面信息 ...
- Google副总裁的管理经验
一.拥挤其实是创新.拥挤喧闹的工作环境会引燃更多的创意火花.办公室应该充满能量和互动,而不是条块分割和等级分化. 二.战略和策略并举.许多人不懂得战略和策略的区别,或者他们认为自己只需要其中一样,其实 ...
- [转]PHP如何关闭notice级别的错误提示
1.在php.ini文件中改动error_reporting改为: error_reporting=E_ALL & ~E_NOTICE 2.如果你不能操作php.ini文件,你可以使用如下方法 ...
- 新增了个job
https://112.124.41.113/svn/wbhpro/wbh-adapter-job
- Kubernetes系统架构简介
1. 前言 Together we will ensure that Kubernetes is a strong and open container management framework fo ...
- 百度地图api 标注的图标不显示问题
图中郑州PPT设计制作中心前面应该有一个小的标,但是死活就是不显示. 经过百度搜索和测试,终于解决.应该是页面定义的CSS和百度的冲突了,解决办法如下: 在当前页面中,加入 <style typ ...