JavaWeb上傳頭像

2021-09-11 08:39:48 字數 1911 閱讀 9488

最近工作中遇到需要維護個人資訊,包括頭像資訊,再次記錄,方便以後使用

前端:

新增附件

js:

//上傳檔案

function openselectfile()

$('#uploadfile').fileupload(,

autoupload:true,

add: function (e, data)

var size = data.files[0].size;

size = (size/1024).tofixed(2);//檔案大小單位kb

var maxfilesize = 10*1024;//最大允許檔案大小單位kb

if(size>maxfilesize)                   

data.submit(); 

},fail:function (e, data) ,

done: function (e, data)

});

後端:

/**

* 上傳

result.put("msg", "檔案上傳成功!");

說明:$('#expert_img').attr('src','admin/images/'+data._response.result.url);

data._response.result.url 儲存的時相對路徑,data._response.result.url 的內容=/// 將以流的方式正常顯示

Retrofit上傳頭像

retrofit retrofit new retrofit.builder baseurl addconverte ctory gsonconverte ctory.create gson工廠類 build githubapi api retrofit.create githubapi.class...

Springboot 上傳頭像

頭像上傳路徑,若不存在,會根據該路徑建立指定路徑資料夾 upload path d upload headimgs 建立類 fileutils 並讀取配置檔案中的值 component configurationproperties prefix upload data public class f...

JavaWeb檔案上傳

charset utf 8 insert title heretitle head action upload method post enctype multipart form data type text name username type file name file type submi...