javaSpringboot实现多⽂件上传功能前端采⽤layui框架,讲解多⽂件上传的完整实现功能。
前端html重点代码如下:
<div class="layui-form-item">
<label class="layui-form-label">上传⽂件</label>
<div class="layui-input-block">
<div class="layui-upload">
<button type="button" class="layui-btn layui-btn-normal" id="testList">选择多⽂件</button>
<div class="layui-upload-list">
<table class="layui-table">
<thead>
<tr><th>⽂件名</th>
<th>⼤⼩</th>
<th>状态</th>
<th>操作</th>
</tr></thead>
<tbody id="demoList"></tbody>
</table>
</div>
<button type="button" class="layui-btn" id="testListAction">开始上传</button>
</div>
</div>
</div>
相应的,js代码如下所⽰:
layui.use('upload', function(){
var $ = layui.jquery,upload = layui.upload;
//多⽂件列表⽰例
var demoListView = $('#demoList')
,uploadListIns = der({
elem: '#testList'
,url: '/upload'
,accept: 'file'
,data:{} //可放扩展数据 key-value
,multiple: true
,
auto: false
,bindAction: '#testListAction'
,choose: function(obj){
var files = this.files = obj.pushFile(); //将每次选择的⽂件追加到⽂件队列
//读取本地⽂件
obj.preview(function(index, file, result){
var tr = $(['<tr id="upload-'+ index +'">'
,'<td>'+ file.name +'</td>'
,'<td>'+ (file.size/1014).toFixed(1) +'kb</td>'
,'<td>等待上传</td>'
,'<td>'
,
'<button class="layui-btn layui-btn-mini demo-reload layui-hide">重传</button>'
,'<button class="layui-btn layui-btn-mini layui-btn-danger demo-delete">删除</button>'
,'</td>'
,'</tr>'].join(''));
//单个重传
tr.find('.demo-reload').on('click', function(){
obj.upload(index, file);
});
//删除
tr.find('.demo-delete').on('click', function(){
delete files[index]; //删除对应的⽂件
<()[0].value = ''; //清空 input file 值,以免删除后出现同名⽂件不可选
});
demoListView.append(tr);
});
}
,done: function(res, index, upload){
de == 0) //上传成功
var tr = demoListView.find('tr#upload-'+ index)
,tds = tr.children();
tds.eq(2).html('<span >上传成功</span>');
tds.eq(3).html(''); //清空操作
return delete this.files[index]; //删除⽂件队列已经上传成功的⽂件
} //code为后台传回来的数据,具体多少⾃⼰定,
//后台只能传回json格式数据,不然会⾛error函数;
,error: function(index, upload){
}
})
});
以上即是前端功能的实现,后端⽅⾯,在Service层Impl下创建⽂件上传的函数:public String uploadNoticeFile(MultipartFile fileList) {
try{
String pathname = filepath;前端大文件上传解决方案
String timeMillis = String(System.currentTimeMillis());//时间戳
String filename = timeMillis + OriginalFilename();
File dir = new File(pathname);
if (!ists()) {
dir.mkdirs();
}
String filepath = pathname + filename;
File serverFile = new File(filepath);
//存⼊数据库
NoticeFile noticeFile = new NoticeFile();
noticeFile.setNoFileName(filename);
noticeFile.setNoFilePath(filepath);
noticeFile.setNoId(0L);
noticeFileRepository.save(noticeFile);
return "1";
}catch (Exception e) {
e.printStackTrace();
return "0";
}
}
NoticeFile是我个⼈在写项⽬时创建的类,读者可根据实际情况⾃⾏运⽤。
然后,在controller层中创建相应的函数:
@RequestMapping(value = "/upload", method = RequestMethod.POST)
@ResponseBody
public Map<String, Object> noticeFile(@RequestParam(name = "file") MultipartFile files) {
String msg = noticeFileService.uploadNoticeFile(files);
Map map = new HashMap();
if (msg == "1") {
map.put("code", "0");
} else {
map.put("code", "1");
}
return map;
}
以上,即实现了多⽂件上传的全部功能。
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。