我是靠谱客的博主 个性香菇,最近开发中收集的这篇文章主要介绍【JavaWeb】SpringMvc 文件上传,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

1. 添加上传文件组件支持

    <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"/>

2. Controller部分

@RequestMapping("upload.do")
    public String upload(@RequestParam("file") MultipartFile file)
            throws IllegalStateException, IOException {
        String basePath = "xxx";
            String path = "";
            if (!file.isEmpty()) {
                if (file.getOriginalFilename().endsWith("txt"))
                    path = basePath + "doc"; 
                else if (file.getOriginalFilename().endsWith("jpg") || file.getOriginalFilename().endsWith("gif")
                        || file.getOriginalFilename().endsWith("png"))
                    path = basePath + "img";
                else
                    path = basePath + "other";
                String fileName = f.getOriginalFilename();
                File tarFile = new File(path, fileName);
                file.transferTo(tarFile);
            }
        return "index.jsp";
    }

3. html部分

<form action="upload.do" enctype="multipart/form-data" method="post">
        <input type="file" name="file">
        <input type="submit" value="上传">
    </form>

4. 多文件上传

@RequestMapping("upload.do")
    public String upload(@RequestParam("file") MultipartFile[] file, HttpServletRequest req)
            throws IllegalStateException, IOException {
        String basePath = "xxx";
        for (MultipartFile f : file) {
            String path = "";
            if (!f.isEmpty()) {
                if (f.getOriginalFilename().endsWith("txt"))
                    path = basePath + "doc"; 
                else if (f.getOriginalFilename().endsWith("jpg") || f.getOriginalFilename().endsWith("gif")
                        || f.getOriginalFilename().endsWith("png"))
                    path = basePath + "img";
                else
                    path = basePath + "other";
                String fileName = f.getOriginalFilename();
                File tarFile = new File(path, fileName);
                f.transferTo(tarFile);
            }
        }
        return "index.jsp";

最后

以上就是个性香菇为你收集整理的【JavaWeb】SpringMvc 文件上传的全部内容,希望文章能够帮你解决【JavaWeb】SpringMvc 文件上传所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部