转载

Spring boot 上传图片

@ResponseBody
    @RequestMapping(path = "/save_photo", method={RequestMethod.POST})
    public void addDish(@RequestParam("photos") MultipartFile file, HttpServletRequest request, HttpServletResponse response) throws Exception
    {
        String path = null;// 文件路径
        String json = "";
        if (file!=null) {// 判断上传的文件是否为空

            String type = null;// 文件类型
            String fileName = file.getOriginalFilename();// 文件原名称
            System.out.println("上传的文件原名称:"+fileName);
            // 判断文件类型
            type = fileName.indexOf(".")!=-1?fileName.substring(fileName.lastIndexOf(".")+1, fileName.length()):null;
            if (type!=null) {// 判断文件类型是否为空
                if ("GIF".equals(type.toUpperCase())||"PNG".equals(type.toUpperCase())||"JPG".equals(type.toUpperCase())) {
                    // 项目在容器中实际发布运行的根路径
                    String realPath = request.getSession().getServletContext().getRealPath("/");
                    // 自定义的文件名称
                    String trueFileName = String.valueOf(System.currentTimeMillis()) + "." + type;
                    // 设置存放图片文件的路径
                    path = realPath+/*System.getProperty("file.separator")+*/trueFileName;
                    System.out.println("存放图片文件的路径:"+path);
                    // 转存文件到指定的路径
                    file.transferTo(new File(path));
                    System.out.println("文件成功上传到指定目录下");                  
                    }
                    json = "{/"res/":1}";
                }else {
                    System.out.println("不是我们想要的文件类型,请按要求重新上传");
                    //return null;
                    json = "{/"res/":0}";
                }
            }else {
                System.out.println("文件类型为空");
                //return null;
                json = "{/"res/":0}";
            }
        }else {
            System.out.println("没有找到相对应的文件");
            json = "{/"res/":0}";
            //return null;
        }
        response.setContentType("application/json;charset=UTF-8");
        response.getWriter().print(json);
    }

首先注意的是参数要加

@RequestParam("photos") MultipartFile file

你的html可能就类似这样的

<form action="/save_photo" enctype="multipart/form-data" method="post">
<input type="file" name="photos" /> <br> 
<input type="submit" value="上传" /> 
</form>

1983

原文  http://www.waitingfy.com/archives/1983
正文到此结束
Loading...