zoukankan      html  css  js  c++  java
  • 图片上传实例

    jsp:

        <form action="/image/save.jhtml" method="post" enctype="multipart/form-data" style=" 500px">
            <input type="hidden" name="focusId" value="${image.focusId}"/>
            <input type="hidden" name="type" value="${image.type}"/>
            <input type="file" name="imageFile"/>
            <input type="submit" value="上传"/>图片大小不能超过1M
        </form>
    

     java:

        @RequestMapping("/image/save.jhtml")
        public ModelAndView save(@RequestParam(value = "imageFile", required = false)
                                 MultipartFile imageFile, HttpServletRequest request, ModelMap model, Image image) {
            HttpSession session = request.getSession(false);
            User logUser = (User) session.getAttribute(GoutripUtils.USER_CONTEXT);
            if (null == logUser)
                return new ModelAndView("redirect:/views/public/index.jsp");
            String name = logUser.getName();
            image.setUpdator(name);
            image.setCreator(name);
            image.setStatus(1);
            String fileName = imageFile.getOriginalFilename();
            String lastName = fileName.substring(fileName.lastIndexOf('.'));
            if (lastName.length() > 5)
                lastName = ".jpg";
            final File targetFile = PathUtil.getRandImgFile(lastName);
            final String filePath = targetFile.getPath();
            if (!targetFile.exists())
                targetFile.mkdirs();
            try {
                imageFile.transferTo(targetFile);
            } catch (IOException e) {
                e.printStackTrace();
            }
            final String finalLastName = lastName;
            new Thread(new Runnable() {
                @Override
                public void run() {
                    String picTo = null;
                    picTo = filePath.substring(filePath.lastIndexOf(".")) + "_1000x500" + finalLastName;
                    ImageUtils.resize(filePath, picTo, 500, 1000, true);
                }
            }).start();
            String path = PathUtil.getRandImgFileUrl(targetFile);
            if (path.equals("/"))
                path = PathUtil.getImgFileUrl(targetFile.getPath());
            System.out.println(path);
            image.setUrl(path);
            imageService.save(image);
            if (null == model)
                model = new ModelMap();
            model.clear();
            model.put("focusId", image.getFocusId());
            model.put("type", image.getType());
            return new ModelAndView("redirect:/image/manager.jhtml").addAllObjects(model);
        }
    
  • 相关阅读:
    监督学习
    第一个应用:鸢尾花分类
    第一章 计算机系统漫游
    前言
    python批量下载验证码,用来做验证码处理
    windows下安装tesserocr
    python 爬虫之requests爬取页面图片的url,并将图片下载到本地
    electron实现透明点投的方法
    css之实现下拉框自上而下展开动画效果&&自下而上收起动画效果
    react项目中canvas之画形状(圆形,椭圆形,方形)
  • 原文地址:https://www.cnblogs.com/sand-tiny/p/3976770.html
Copyright © 2011-2022 走看看