• 图片上传实例


    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);
        }
    
  • 相关阅读:
    弹飞绵羊
    POJ 3308
    狼抓兔子
    块状链表题*1
    块状链表
    双向链表
    Linux入职基础-1.2_U盘安装RedHat5具体步骤
    Linux入职基础-1.1_国内开源的主要镜像站
    VS.NET(C#)--2.9_HTML服务器控件案例
    VS2015按钮方法
  • 原文地址:https://www.cnblogs.com/sand-tiny/p/3976770.html
Copyright © 2020-2023  润新知