java 图片上传后台代码,把图片保存到服务器本地盘,并且按照一天一个文件夹分开存放,易于管理,不说了直接上代码:
@Controller
@RequestMapping("/oa")
public class SavePicController extends BaseController {
@RequestMapping("/savepic")
@ResponseBody
public String savePicOnService(MultipartFile file, HttpServletRequest request) {
Date curDate = new Date();
SimpleDateFormat ymdFormat = new SimpleDateFormat("yyyyMMdd");
DateFormat dateFormat = new SimpleDateFormat("yyyyMMddHHmmssSSS");
// OaConstant.picDir.picloc 是本地保存图片的位置
String picDir = OaConstant.picDir.picloc + ymdFormat.format(curDate);
File picDirGsPic = new File(OaConstant.picDir.picloc);
//判断存图片的文件夹是否存在,不存在则创建
if(!picDirGsPic.exists()) {
picDirGsPic.mkdir();
}
File picDirF = new File(picDir);
//存图片的文件夹按日期一天生成一个,这里判断当天的是否已存在,不存在则创建
if(!picDirF.exists()) {
picDirF.mkdir();
}
//按日期生成保存图片的文件名
String picPath = picDir+"\\" + dateFormat.format(new Date()) + ".jpg";
FileOutputStream fout;
try {
fout = new FileOutputStream(picPath);
fout.write(file.getBytes());
fout.close();
} catch (Exception e) {
e.printStackTrace();
}
//把图片的保存路径转成Json传给前台
JSONObject object = new JSONObject();
object.put("code","200");
object.put("data",picPath);
return object.toJSONString();
}
}