-
文件上传和下载都是一件难题,今天我们的目的就是攻克这个难题
开始正题:
-
首先创建一个SpringBoot项目,导入thmeleaf模板引擎和Web
-
Service层代码:
package com.zhang.upload_demo01.service;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
import org.springframework.web.multipart.MultipartFile;
import java.io.File;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.UUID;
-
使用这个也可以 放回的信息更加详细
package com.zhang.upload_demo02.service;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
import org.springframework.web.multipart.MultipartFile;
import java.io.File;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
import java.util.UUID;
