2021-03-08

这段代码实现了从HttpServletRequest中接收MultipartFile类型的Excel文件,并将其保存到本地指定目录。文件名由用户ID和系统时间戳组成,确保唯一性。保存过程中使用了FileOutputStream写入文件内容,最后关闭流并返回保存的文件对象。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

导入excel表格时,先将表格保存在本地,保存本次上传的excel文件到本地目录:

/**
     * 保存excel文件到本地
     * @param request
     * @param userId 
     * @param file excel文件
     */
    public static File saveExcelToLocal(HttpServletRequest request, Integer userId, MultipartFile file) {
        File newFile=null;
        try {
            File newFileDir = new File(request.getServletContext().getRealPath("/") + "upload/");
            newFileDir.mkdirs();
            newFile = new File(request.getServletContext().getRealPath("/") + "upload/" + userId + "_" + System.currentTimeMillis() + file.getOriginalFilename());
            FileOutputStream os = null;
            os = new FileOutputStream(newFile);
            os.write(file.getBytes());
            os.close();
            log.info("本次上传的excel文件,暂时保存在: {}", newFile.getAbsolutePath());
            file.transferTo(newFile);
        } catch (IOException e) {
            e.printStackTrace();
        }
        return newFile;
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值