多文件上传demo

Posted tinyj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了多文件上传demo相关的知识,希望对你有一定的参考价值。

@ApiOperation(value = "批量上传", notes = "批量上传", httpMethod = "POST")
    @PostMapping(value = "/upload")
    public void upload(HttpServletRequest request) {
        MultipartHttpServletRequest multipartRequest=(MultipartHttpServletRequest)request;
        String savePath="E:/test/";

        //保证目录存在
        File dir = new File(savePath);
        if (!dir.isDirectory()) {
            dir.mkdirs();
        }

        Iterator<String> it = multipartRequest.getFileNames();
        while (it.hasNext()) {
            MultipartFile multipartFile = multipartRequest.getFile(it.next());
            if (multipartFile != null) {
                String originName = multipartFile.getOriginalFilename();
                int subIdx = originName.lastIndexOf(".");
                String suffix = originName.substring(subIdx);//文件后缀
                File file;
                String showName;
                while (true) {
                    showName = UUID.randomUUID().toString().replaceAll("-", "") + suffix;//文件名称
                    file = new File(savePath + showName);
                    if (!file.exists()) {
                        break;
                    }
                }
                byte[] buffer = new byte[1024];
                try (OutputStream os = new FileOutputStream(file);
                     InputStream is = multipartFile.getInputStream()){
                    while (is.read(buffer) != -1) {
                        os.write(buffer);
                    }
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    }

  

以上是关于多文件上传demo的主要内容,如果未能解决你的问题,请参考以下文章

java Ftp上传创建多层文件的代码片段

SpringMvc入门五----文件上传

Bootstrap文件上传插件File Input的使用

[vscode]--HTML代码片段(基础版,reactvuejquery)

如何使用element-ui的upload组件实现上传文件到七牛

web uploader的demo怎样导入css文件?