java 实现图片上传功能
1:jsp 页面上传图片按钮在这里我就写相关的代码
<div class="control-group">
<label class="control-label">营业执照:</label>
<div class="controls">
<input type="file" class="form-control-input" name="yingYeZhiZhaoName" value="${office.yingYeZhiZhao }"/>
<%-- <input type="hidden" name="yingYeZhiZhao" value="${office.yingYeZhiZhao }"/> --%>
</div>
<div class="controls"><img src="${office.yingYeZhiZhao }" width="203" title="点击更换图片" id="logoImgTag" /></div>
</div>
2:下面是控制层action 代码
@RequestMapping("/add")
public String addOffice(HttpServletRequest request, HttpServletResponse response,Office office, Model model, RedirectAttributes redirectAttributes, User user,String officeId,String userId,String roleName,MultipartFile yingYeZhiZhaoName) {
String originalFilename = yingYeZhiZhaoName.getOriginalFilename();
if((officeId !=null && !"".equals(officeId))&&(userId !=null && !"".equals(userId)) ){//修改用户信息
User newUser = systemService.getUser(userId);
Office newOffice = officeService.get(officeId);
//用户表基本信息
if(StringUtils.isNotBlank(user.getPassword())){
String password = SystemService.entryptPassword(user.getPassword());
newUser.setPassword(password);
}
//newUser.setName(user.getName());//公司名称
//公司表信息
newOffice.setMaster(office.getMaster());
newOffice.setMasterSex(office.getMasterSex());
newOffice.setZhiWei(office.getZhiWei());
newOffice.setEmail(office.getEmail());//公司邮箱
newOffice.setName(office.getName());//公司名称
newOffice.setJianCheng(office.getJianCheng());//公司简称
newOffice.setProvince(office.getProvince());//省
newOffice.setCity(office.getCity());//市
newOffice.setAddress(office.getAddress());
newOffice.setDuiGongZhangHu(office.getDuiGongZhangHu());//对公账户
newOffice.setDuiGongShouKuan(office.getDuiGongShouKuan());//对公收款
newOffice.setDuiGongYinHang(office.getDuiGongYinHang());//对公银行
newOffice.setQuHao(office.getQuHao());
newOffice.setTelephone(office.getTelephone());//公司固话
newOffice.setRemarks(office.getRemarks());//备注
if(originalFilename !=null && !"".equals(originalFilename)){//如果是重新上传了图片
int num=(int)(Math.random()*100000);
Map<String, String> map = QiniuUtils.fileUploadPdf(yingYeZhiZhaoName,num+officeId);
newOffice.setYingYeZhiZhao(map.get(Constants.QIUNIU_EXHI_IMAGE_SOURCE));
}
officeService.updateSysOffice(newOffice);
systemService.udateUser(newUser);
//officeService.save(newOffice);
}else{//添加用户信息
if(originalFilename !=null && !"".equals(originalFilename)){//如果是重新上传了图片
int num=(int)(Math.random()*100000);
Map<String, String> map = QiniuUtils.fileUploadPdf(yingYeZhiZhaoName,num+officeId);
office.setYingYeZhiZhao(map.get(Constants.QIUNIU_EXHI_IMAGE_SOURCE));
}
List<Role> roles = new ArrayList<Role>(0);
Role role = null;
User newUser = new User();
newUser.setPassword(SystemService.entryptPassword(user.getPassword()));// 设置密码
newUser.setMobile(user.getMobile());// 手机号码
newUser.setLoginName(user.getMobile());// 登录名(手机或者邮箱)
role = systemService.getRole(roleName);//这地方判断是2是会展代理商15是会展主办方
roles.add(role);
Role admin = new Role();
admin.setId(Constants.HE_ZUO_SHANG_ADMIN);// 默认注册的用户就是合作商管理员
roles.add(admin);
newUser.setRoleList(roles);
Area area = new Area();
area.setId("1");
office.setCode(UUID.randomUUID().toString());
office.setType("1");
office.setGrade("1");
office.setUseable("1");
office.setDelFlag("0");
User createBy = new User();
createBy.setId("1");
Office poffice = new Office();
poffice.setId("0");
office.setParent(poffice);
office.setParentIds("0,");
office.setArea(area);
office.preInsert();
office.setIsNewRecord(true);
office.setCreateBy(createBy);
office.setUpdateBy(createBy);
office.setRole(role);
officeService.register(office);
newUser.setOffice(office);
newUser.setCompany(office);
newUser.setName(office.getName());
systemService.saveUser(newUser);
}
String id = "0".equals(office.getParentId()) ? "" : office.getParentId();
return "redirect:" + adminPath + "/sys/office/list?id=" + id + "&parentIds=" + office.getParentIds();
}
以上实现图片功能是把图片上传到七牛服务器上
注意
<input type="file" class="form-control-input" name="yingYeZhiZhaoName" value="${office.yingYeZhiZhao }"/> 控件里面的name 不要和提交时表单对象里面的属性一样,所以这地方最好不要写对象属性的名字
3:下面是七牛部分代码
/**
* 七牛招展函上传
* @param file
* @param name
* @return
*/
public static Map<String, String> fileUploadPdf(MultipartFile file, String name) {
Map<String, String> map = new HashMap<String, String>();
try {
UploadManager uploadManager = new UploadManager(); // 上传到云中的文件名
// String newName = name+System.currentTimeMillis(); byte[] bytes = file.getBytes(); uploadManager.put(bytes, name, getUpToken0(name));
String isProduct = Global.getConfig("isProduct");
String url = null;
if ("Y".equalsIgnoreCase(isProduct)) {
url = Constants.QIUNIU_EXHI_IMAGE_URL;
} else if ("N".equalsIgnoreCase(isProduct)) {
url = Constants.QIUNIU_TEST_IMAGE_URL;
}
map.put("fileUrl", url + name);
map.put("disposeUrl", url + name + ":result");
} catch (Exception e) {
log.error("七牛上传文件失败:" + e.getMessage());
e.printStackTrace();
}
return map;
}
java 实现图片上传功能的更多相关文章
- java实现图片上传功能,并返回图片保存路径
1.前端html <div class="form-group"> <label for="inputPassword3" class ...
- thinkphp达到UploadFile.class.php图片上传功能
片上传在站点里是非经常常使用的功能.ThinkPHP里也有自带的图片上传类(UploadFile.class.php) 和图片模型类(Image.class.php).方便于我们去实现图片上传功能,以 ...
- Spring+SpringMVC+MyBatis+easyUI整合优化篇(七)图片上传功能
日常啰嗦 前一篇文章<Spring+SpringMVC+MyBatis+easyUI整合优化篇(六)easyUI与富文本编辑器UEditor整合>讲了富文本编辑器UEditor的整合与使用 ...
- java多图片上传--前端实现预览--图片压缩 、图片缩放,区域裁剪,水印,旋转,保持比例。
java多图片上传--前端实现预览 前端代码: https://pan.baidu.com/s/1cqKbmjBSXOhFX4HR1XGkyQ 解压后: java后台: <!--文件上传--&g ...
- PHP语言学习之php做图片上传功能
本文主要向大家介绍了PHP语言学习之php做图片上传功能,通过具体的内容向大家展示,希望对大家学习php语言有所帮助. 今天来做一个图片上传功能的插件,首先做一个html文件:text.php < ...
- [Ting's笔记Day8]活用套件carrierwave gem:(3)Deploy图片上传功能到Heroku网站
前情提要: 身为Ruby新手村民,创造稳定且持续的学习步调很重要,我用的方法就是一周在IT邦写三篇笔记,希望藉由把笔记和遇到的bug记录下来的过程,能帮助到未来想用Ruby on Rails架站的新手 ...
- H5 利用vue实现图片上传功能。
H5的上传图片如何实现呢? 以下是我用vue实现的图片上传功能,仅供参考. <!DOCTYPE html> <html> <head> <meta chars ...
- 给DEDECMS广告管理中增加图片上传功能
dedecms的广告管理功能稍微有点次,本文就是在dedecms广告管理原有的基础上增加广告图片上传功能. 安装方法,对应自己的dedecms版本下载对应的编码然后解压把里面的文件放在后台目录覆盖即可 ...
- vue 图片上传功能
这次做了vue页面的图片上传功能,不带裁剪功能的! 首先是html代码,在input框上添加change事件,如下: <ul class="clearfix"> ...
随机推荐
- js相关--浅拷贝和深拷贝
1.js的数据类型 基本概述:js的数据类型分为两种,分别为基本数据类型和引用数据类型,它们俩的区别在于基本数据类型采用值传递,引用数据类型采用指针形式传递. 如下所示:引用类型通过简单的=进行复制, ...
- 「JSOI2015」染色问题
「JSOI2015」染色问题 传送门 虽然不是第一反应,不过还是想到了要容斥. 题意转化:需要求满足 \(N + M + C\) 个条件的方案数. 然后我们就枚举三个数 \(i, j, k\) ,表示 ...
- 吴裕雄 PYTHON 神经网络——TENSORFLOW 双隐藏层自编码器设计处理MNIST手写数字数据集并使用TENSORBORD描绘神经网络数据2
import os import tensorflow as tf from tensorflow.examples.tutorials.mnist import input_data os.envi ...
- 吴裕雄 python 神经网络——TensorFlow图片预处理
import numpy as np import tensorflow as tf import matplotlib.pyplot as plt # 使用'r'会出错,无法解码,只能以2进制形式读 ...
- JenKins docker 集群
//tag 桉树有时间来搞 **阿斯蒂 啊 阿斯蒂
- Springboot项目搭建(1)-创建,整合mysql/oracle,druid配置,简单的CRUD
源码地址:https://github.com/VioletSY/article-base 1:创建一个基本项目:https://blog.csdn.net/mousede/article/detai ...
- 【PAT甲级】1088 Rational Arithmetic (20 分)
题意: 输入两个分数(分子分母各为一个整数中间用'/'分隔),输出它们的四则运算表达式.小数需要用"("和")"括起来,分母为0的话输出"Inf&qu ...
- vue生命周期中update的具体用法
在页面上 改变元数据data中数据,并且导致页面重新渲染时,才会进入update周期
- Git基础及进阶-系统总结
Git基础及进阶-系统总结 by 小强 2019-07-01 考虑到入职后不仅需要熟练掌握git的基本使用,在企业实际操作中还涉及一些进阶指令.作为一个程序员,熟练使用工具是一项基本技能,也是程序员的 ...
- Nmap工具用法详解
Nmap Network Mapper 是一款开放源代码的网络探测和安全审核工具 1.介绍