Ajax實現(xiàn)文件上傳功能(Spring MVC)

本文實例為大家分享了ajax實現(xiàn)文件上傳的具體代碼,供大家參考,具體內(nèi)容如下

前端表單 和 jquery jsp/html代碼

使用jqury

<script src="static/js/jquery-3.4.1.js"></script>

前端表單

<form id="form-avatar" enctype="multipart/form-data">
 <p>請選擇要上傳的文件:</p>
 
 <p><input type="file" name="file" /></p>
 <p><input id="btn-avatar" type="button" value="上傳" /></p>
</form>

ajax請求服務(wù)器

<script>
 function uploadfile(){
  $.ajax({
   url : "/url/upload",
   data: new formdata($("#form-avatar")[0]),
   type : "post",
   // 告訴jquery不要去處理發(fā)送的數(shù)據(jù),用于對data參數(shù)進行序列化處理 這里必須false
   processdata : false,
   // 告訴jquery不要去設(shè)置content-type請求頭
   contenttype : false,

   success : function(json) {
    alert("執(zhí)行成功");
   },
   error : function(json) {
    alert("執(zhí)行失敗");

   }
  });
 }
 $("#btn-avatar").on("click",uploadfile);
</script>

conroller.java

@postmapping("/upload")
 public void fileupload2(@requestparam("file") commonsmultipartfile file, httpservletrequest request) throws ioexception {
  system.out.println("走了");
  //上傳路徑保存設(shè)置
  string path = request.getservletcontext().getrealpath("/upload");
  file realpath = new file(path);
  if (!realpath.exists()) {
   realpath.mkdir();
  }
  //上傳文件地址
  system.out.println("上傳文件保存地址:" + realpath);

  //通過commonsmultipartfile的方法直接寫文件(注意這個時候)
  file.transferto(new file(realpath + "/" + file.getoriginalfilename()));

 }

結(jié)果

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習有所幫助,也希望大家多多支持碩編程。

相關(guān)文章
亚洲国产精品第一区二区,久久免费视频77,99V久久综合狠狠综合久久,国产免费久久九九免费视频