欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

把MultipartFile文件下载到本地

程序员文章站 2022-05-14 21:54:48
...

代码片段

public void approvalFile( MultipartFile filecontent){
    OutputStream os = null;
    InputStream inputStream = null;
    String fileName = null;
    try {
        inputStream = filecontent.getInputStream();
        fileName = filecontent.getOriginalFilename();
    } catch (IOException e) {
        e.printStackTrace();
    }
    try {
        String path = "F:\\test\\";
        // 2、保存到临时文件
        // 1K的数据缓冲
        byte[] bs = new byte[1024];
        // 读取到的数据长度
        int len;
        // 输出的文件流保存到本地文件
        File tempFile = new File(path);
        if (!tempFile.exists()) {
            tempFile.mkdirs();
        }
        os = new FileOutputStream(tempFile.getPath() + File.separator + fileName);
        // 开始读取
        while ((len = inputStream.read(bs)) != -1) {
            os.write(bs, 0, len);
        }
    } catch (IOException e) {
        e.printStackTrace();
    } catch (Exception e) {
        e.printStackTrace();
    } finally {
        // 完毕,关闭所有链接
        try {
            os.close();
            inputStream.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
相关标签: 原创