java spring框架文件上传_SpringBoot+layui实现文件上传功能

什么是spring boot

spring boot是由pivotal团队提供的全新框架,其设计目的是用来简化新spring应用的初始搭建以及开发过程。该框架使用了特定的方式来进行配置,从而使开发人员不再需要定义样板化的配置。用我的话来理解,就是spring boot其实不是什么新的框架,它默认配置了很多框架的使用方式,就像maven整合了所有的jar包,spring boot整合了所有的框架(不知道这样比喻是否合适)。

页面代码(只需要引入基础layui的css与js)

多文件列表上传

选择多文件

文件名大小状态操作

开始上传

js

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

var $ = layui.jquery

,upload = layui.upload;

//多文件列表示例

var demolistview = $('#demolist')

,uploadlistins = upload.render({

elem: '#testlist'

,url: 'upload/uploadfile'

,accept: 'file'

,multiple: true

,auto: false

,size: 5120

,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]; //删除文件队列已经上传成功的文件

}

this.error(index, upload);

}

,error: function(index, upload){

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

,tds = tr.children();

tds.eq(2).html('上传失败');

tds.eq(3).find('.demo-reload').removeclass('layui-hide'); //显示重传

}

});

});

后台接收

public final static string upload_file_path = "d:\\uploadfile\\";

@requestmapping(value = "uploadfile")

public string uploadimage(@requestparam("file") multipartfile file) {

if (!file.isempty()) {

map resobj = new hashmap<>(map_size);

try {

bufferedoutputstream out = new bufferedoutputstream(

new fileoutputstream(new file(upload_file_path, file.getoriginalfilename())));

out.write(file.getbytes());

out.flush();

out.close();

} catch (ioexception e) {

resobj.put("msg", "error");

resobj.put("code", "1");

return jsonobject.tojsonstring(resobj);

}

resobj.put("msg", "ok");

resobj.put("code", "0");

return jsonobject.tojsonstring(resobj);

} else {

return null;

}

}

总结

以上所述是小编给大家介绍的springboot+layui实现文件上传功能,希望对大家有所帮助

如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值