spring boot实现简单文件上传

这是一个关于使用HTML和Spring MVC实现文件上传的示例。HTML页面包含一个表单,允许用户选择文件并提交。在后台,`UpController`接收文件并将其保存到服务器的特定路径下,使用UUID生成唯一的文件名,确保文件上传成功。
摘要由CSDN通过智能技术生成

1、视图层

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>上传</title>
</head>
<body>
<form action="/uploaded" enctype="multipart/form-data" method="post">
    <input type="file" name="file">
    <input type="submit" value="上传">
</form>
</body>
</html>

2、上传方法

package com.example.demo.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.multipart.MultipartFile;

import javax.servlet.http.HttpServletRequest;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.UUID;

/**
 * 文件: UpController
 * 描述:
 * 创建时间: 2021-12-02 12:59
 *
 * @author MSCIWANG
 */
@Controller
public class UpController {

        @RequestMapping("/upload")
    public String upload(){
            return "upload";
    }

    @ResponseBody
    @RequestMapping(value = "/uploaded",method = RequestMethod.POST)
    public String uploaded(@RequestParam("file") MultipartFile file, HttpServletRequest request){


        //String filename=file.getOriginalFilename();
        // 创建文件名称
     String fileName = UUID.randomUUID() + "."
      + file.getContentType().substring(file.getContentType().lastIndexOf("/") + 1);

        //即将要上传的目录
        String filepath="h:\\shiro\\upload\\";

        try {
            uploadfile(file.getBytes(),filepath,filename);

        } catch (Exception e) {
            e.getMessage();
        }
        return "上传成功";

    }

    public void uploadfile(byte[] file,String filepath,String filename) throws IOException
    {
        File tfile=new File(filepath);
        if(!tfile.exists()){
            tfile.mkdir();
        }
            FileOutputStream out = new FileOutputStream(filepath+filename);
            out.write(file);
            out.flush();
            out.close();
    }


}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值