首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >Springboot大文件上传下载实现思路,分片、断点续传代码

Springboot大文件上传下载实现思路,分片、断点续传代码

原创
作者头像
星辰大海的精灵
发布2024-12-03 17:13:18
发布2024-12-03 17:13:18
8901
举报
文章被收录于专栏:Java编程Java编程

WebUploader是由Baidu WebFE(FEX)团队开发的一个简单的以HTML5为主,FLASH为辅的现代文件上传组件。

SpringBoot 大文件上传

实现思路

分片:按照自定义缓冲区大小,将大文件分成多个小文件片段。

断点续传:根据分片数量,给每个小文件通过循环起对应名称,当文件下载中断在续传时,判断小文件名称若存在则不存了,此时还需要判断文件若不是最后一个分片则大小为缓冲区固定大小,若没达到则证明小文件没传完需要重新传输。

合并:下载时通过线程池创建任务进行下载或上传、当判断最后一个分片传完时,调用合并方法,根据之前定义的文件名称顺序进行合并,肯能出现最后一个分片传完,之前分片未传完的情况,需要使用while循环进行判断,多文件未传输完,则等待一会继续判断。

大文件秒传:实际上是根据文件名称区一个唯一的md5值存储,传文件时进行判断,若存在则不传。

创建springboot项目,添加依赖

<dependencies>

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter</artifactId>

</dependency>

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-test</artifactId>

<scope>test</scope>

</dependency>

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-autoconfigure</artifactId>

</dependency>

<dependency>

<groupId>commons-fileupload</groupId>

<artifactId>commons-fileupload</artifactId>

<version>1.3.1</version>

</dependency>

<dependency>

<groupId>commons-io</groupId>

<artifactId>commons-io</artifactId>

<version>2.4</version>

</dependency>

<!-- 做断点下载使用-->

<dependency>

<groupId>org.apache.httpcomponents</groupId>

<artifactId>httpcore</artifactId>

</dependency>

<dependency>

<groupId>org.apache.httpcomponents</groupId>

<artifactId>httpclient</artifactId>

</dependency>

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-web</artifactId>

</dependency>

</dependencies>

编写测试环境看环境有没有搭建成功

@Controller

public class UploadController {

@RequestMapping("/up")

@ResponseBody

public String upload(HttpServletRequest request, HttpServletResponse response){

return "搭建成功";

}

}

页面主要代码

<body>

<div id="upload-container">

<span>上传</span>

</div>

<div id="upload-list"></div>

<button id="picker">点击上传</button>

</body>

<script>

$('#upload-container').click(function (event){

$("#picker").find('input').click();

});

var uploader = WebUploader.create({

auto: true,

swf : 'Uploader.swf', //swf文件路径

server: 'http://localhost:8080/upload',

dnd: '#upload-container',

pick: '#picker', //内部根据当前运行创建

multiple: true, //选择多个

chunked: true, //开启分片

threads: 20, //并发数

method: 'POST',

fileSizeLimit: 1024*1024*1024*10, //单个文件大小限制

fileSingleSizeLimit: 1024*1024*1024, //总文件大小

fileVal: 'upload'

});

uploader.on("beforeFileQueued",function (file){

console.log(file); //获取文件后缀

});

uploader.on('fileQueued',function (file){

//选中文件要做的事

console.log(file.ext);

console.log(file.size);

console.log(file.name);

var html = '<div class="upload-item"><span>文件名:'+file.name+'</span><span data-file_id="'+file.id+'"class="btn-delete">删除</span><span data-file_id="'+file.id+'"class="btn-retry">重试</span><div class="percentage '+file.id+'" style="width: 0%;"></div></div>'

$('#upload-list').append(html);

uploader.md5File(file) //给文件定义唯一的md5值,当再次上传相同文件时,就不用传了 大文件秒传实际上是没传,直接拷贝之前文件地址

//显示进度

.progress(function (percentage){

console.log('Percentage:',percentage);

})

//完成

.then(function (val){

console.log('md5 result',val);

});

});

webUpload组件支持分片上传:利用多进程并发上传,将大文件拆分成一个一个的小文件,每一个小文件属于大文件的一个分片

断点续传实现:后端代码

@Controller

public class UploadController {

private final static String utf8 = "utf-8";

@RequestMapping("/up")

@ResponseBody

public void upload(HttpServletRequest request, HttpServletResponse response) throws Exception {

response.setCharacterEncoding(utf8);

//长传时候会有多个分片,需要记录当前为那个分片

Integer schunk = null;

//总分片数

Integer schunks = null;

//名字

String name = null;

//文件目录

String path = "D:\\file";

BufferedOutputStream os = null;

try {

//设置缓冲区大小 先读到内存里在从内存写

DiskFileItemFactory factory = new DiskFileItemFactory();

factory.setSizeThreshold(1024);

factory.setRepository(new File(path));

//解析

ServletFileUpload upload = new ServletFileUpload(factory);

//设置单个大小与最大大小

upload.setFileSizeMax(5l*1024l*1024l*1024l);

upload.setSizeMax(10l*1024l*1024l*1024l);

List<FileItem> items = upload.parseRequest(request);

for (FileItem item : items){

if (item.isFormField()){

//获取分片数赋值给遍量

if ("chunk".equals(item.getFieldName())){

schunk = Integer.parseInt(item.getString(utf8));

}

if ("chunks".equals(item.getFieldName())){

schunks = Integer.parseInt(item.getString(utf8));

}

if ("name".equals(item.getFieldName())){

name = item.getString(utf8);

}

}

}

//取出文件基本信息后

for (FileItem item : items){

if (!item.isFormField()){

//有分片需要临时目录

String temFileName = name;

if (name != null){

if (schunk != null){

temFileName = schunk+"_"+name;

}

//判断文件是否存在

File temfile = new File(path, temFileName);

//断点续传 判断文件是否存在,若存在则不传

if (!temfile.exists()){

item.write(temfile);

}

}

}

}

//文件合并 当前分片为最后一个就合并

if (schunk != null && schunk.intValue()== schunks.intValue()-1){

File tempFile = new File(path, name);

os = new BufferedOutputStream(new FileOutputStream(tempFile));

//根据之前命名规则找到所有分片

for (int i = 0; i < schunks; i++) {

File file = new File(path, i + "_" + name);

//并发情况 需要判断所有 因为可能最后一个分片传完,之前有的还没传完

while (!file.exists()){

//不存在休眠100毫秒后在从新判断

Thread.sleep(100);

}

//分片存在 读入数组中

byte[] bytes = FileUtils.readFileToByteArray(file);

os.write(bytes);

os.flush();

file.delete();

}

os.flush();

}

response.getWriter().write("上传成功");

}finally {

try {

if (os != null){

os.close();

}

}catch (IOException e){

e.printStackTrace();

}

}

}

}

文件分片下载服务端

@Controller

public class DownLoadController {

private final static String utf8 = "utf-8";

@RequestMapping("/down")

public void downLoadFile(HttpServletRequest request, HttpServletResponse response) throws IOException {

response.setCharacterEncoding(utf8);

//定义文件路径

File file = new File("D:\\File\\a.mp4");

InputStream is = null;

OutputStream os = null;

try {

//分片下载

long fSize = file.length();//获取长度

response.setContentType("application/x-download");

String fileName = URLEncoder.encode(file.getName(),utf8);

response.addHeader("Content-Disposition","attachment;filename="+fileName);

//根据前端传来的Range 判断支不支持分片下载

response.setHeader("Accept-Range","bytes");

//获取文件大小

response.setHeader("fSize",String.valueOf(fSize));

response.setHeader("fName",fileName);

//定义断点

long pos = 0,last = fSize-1,sum = 0;

//判断前端需不需要分片下载

if (null != request.getHeader("Range")){

response.setStatus(HttpServletResponse.SC_PARTIAL_CONTENT);

String numRange = request.getHeader("Range").replaceAll("bytes=","");

String[] strRange = numRange.split("-");

if (strRange.length == 2){

pos = Long.parseLong(strRange[0].trim());

last = Long.parseLong(strRange[1].trim());

//若结束字节超出文件大小 取文件大小

if (last>fSize-1){

last = fSize-1;

}

}else {

//若只给一个长度 开始位置一直到结束

pos = Long.parseLong(numRange.replaceAll("-","").trim());

}

}

long rangeLenght = last-pos+1;

String contentRange = new StringBuffer("bytes").append(pos).append("-").append(last).append("/").append(fSize).toString();

response.setHeader("Content-Range",contentRange);

response.setHeader("Content-Lenght",String.valueOf(rangeLenght));

os = new BufferedOutputStream(response.getOutputStream());

is = new BufferedInputStream(new FileInputStream(file));

is.skip(pos);//跳过已读的文件

byte[] buffer = new byte[1024];

int lenght = 0;

//相等证明读完

while (sum < rangeLenght){

lenght = is.read(buffer,0, (rangeLenght-sum)<=buffer.length? (int) (rangeLenght - sum) :buffer.length);

sum = sum+lenght;

os.write(buffer,0,lenght);

}

System.out.println("下载完成");

}finally {

if (is!= null){

is.close();

}

if (os!=null){

os.close();

}

}

}

}

客户端分片下载,指定固定文件

@RestController

public class DownloadClient {

private final static long per_page = 1024l*1024l*50l;

//分片存储临时目录 当分片下载完后在目录中找到文件合并

private final static String down_path="D:\\File";

//多线程下载

ExecutorService pool = Executors.newFixedThreadPool(10);

//文件大小 分片数量 文件名称

//使用探测 获取变量

//使用多线程分片下载

//最后一个分片下载完 开始合并

@RequestMapping("/downloadFile")

public String downloadFile() throws IOException {

FileInfo fileInfo = download(0,10,-1,null);

if (fileInfo!= null){

long pages = fileInfo.fSize/per_page;

for (int i = 0; i <= pages; i++) {

pool.submit(new Download(i*per_page,(i+1)*per_page-1,i,fileInfo.fName));

}

}

return "成功";

}

class Download implements Runnable{

long start;

long end;

long page;

String fName;

public Download(long start, long end, long page, String fName) {

this.start = start;

this.end = end;

this.page = page;

this.fName = fName;

}

@Override

public void run() {

try {

FileInfo fileInfo = download(start,end,page,fName);

} catch (IOException e) {

e.printStackTrace();

}

}

}

//返回文件名 跟大小

private FileInfo download(long start,long end,long page,String fName) throws IOException {

//断点下载 文件存在不需要下载

File file = new File(down_path, page + "-" + fName);

//探测必须放行 若下载分片只下载一半就锻炼需要重新下载所以需要判断文件是否完整

if (file.exists()&&page != -1&&file.length()==per_page){

return null;

}

//需要知道 开始-结束 = 分片大小

HttpClient client = HttpClients.createDefault();

//httpclient进行请求

HttpGet httpGet = new HttpGet("http://127.0.0.1:8080/down");

//告诉服务端做分片下载

httpGet.setHeader("Range","bytes="+start+"-"+end);

HttpResponse response = client.execute(httpGet);

String fSize = response.getFirstHeader("fSize").getValue();

fName= URLDecoder.decode(response.getFirstHeader("fName").getValue(),"utf-8");

HttpEntity entity = response.getEntity();//获取文件流对象

InputStream is = entity.getContent();

//临时存储分片文件

FileOutputStream fos = new FileOutputStream(file);

byte[] buffer = new byte[1024];//定义缓冲区

int ch;

while ((ch = is.read(buffer)) != -1){

fos.write(buffer,0,ch);

}

is.close();

fos.flush();

fos.close();

//判断是不是最后一个分片

if (end-Long.valueOf(fSize)>0){

//合并

try {

mergeFile(fName,page);

} catch (Exception e) {

e.printStackTrace();

}

}

return new FileInfo(Long.valueOf(fSize),fName);

}

private void mergeFile(String fName, long page) throws Exception {

//归并文件位置

File file = new File(down_path, fName);

BufferedOutputStream os = new BufferedOutputStream(new FileOutputStream(file));

for (int i = 0; i <= page; i++) {

File tempFile = new File(down_path, i + "-" + fName);

//分片没下载或者没下载完需要等待

while (!file.exists()||(i!=page&&tempFile.length()<per_page)){

Thread.sleep(100);

}

byte[] bytes = FileUtils.readFileToByteArray(tempFile);

os.write(bytes);

os.flush();

tempFile.delete();

}

File file1 = new File(down_path, -1 + "-null");

file1.delete();

os.flush();

os.close();

}

//使用内部类实现

class FileInfo{

long fSize;

String fName;

public FileInfo(long fSize, String fName) {

this.fSize = fSize;

this.fName = fName;

}

}

}

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档