java boot 文件传输_java Springboot实现多文件上传功能

前端采用layui框架,讲解多文件上传的完整实现功能。

前端html重点代码如下:

上传文件

选择多文件

文件名大小状态操作

开始上传

相应的,js代码如下所示:

layui.use('upload', function(){

var $ = layui.jquery,upload = layui.upload;

//多文件列表示例

var demoListView = $('#demoList')

,uploadListIns = upload.render({

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 = $(['

'

,'

'+ file.name +''

,'

'+ (file.size/1014).toFixed(1) +'kb'

,'

等待上传'

,'

'

,'重传'

,'删除'

,'

'

,'

'].join(''));

//单个重传

tr.find('.demo-reload').on('click', function(){

obj.upload(index, file);

});

//删除

tr.find('.demo-delete').on('click', function(){

delete files[index]; //删除对应的文件

tr.remove();

uploadListIns.config.elem.next()[0].value = ''; //清空 input file 值,以免删除后出现同名文件不可选

});

demoListView.append(tr);

});

}

,done: function(res, index, upload){

if(res.code == 0) //上传成功

var tr = demoListView.find('tr#upload-'+ index)

,tds = tr.children();

tds.eq(2).html('上传成功');

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 = Long.toString(System.currentTimeMillis());//时间戳

String filename = timeMillis + fileList.getOriginalFilename();

File dir = new File(pathname);

if (!dir.exists()) {

dir.mkdirs();

}

String filepath = pathname + filename;

File serverFile = new File(filepath);

fileList.transferTo(serverFile);

//存入数据库

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 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;

}

以上,即实现了多文件上传的全部功能。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值