.net core 上傳excel文件
阿新 • • 發佈:2018-06-07
.net core 文件上傳 引用:
using System.Net.Http.Headers;
依賴註入:
private readonly IHostingEnvironment hostingEnvironment;
public HomeController(IHostingEnvironment env)
{
this.hostingEnvironment = env;
}
cshtml 使用 h-ui admin模板(若不需要直接上個 file標簽就行):
去掉 file標簽中的 accept 限制 可以傳各種文件
<form asp-controller="Home" role="form" asp-action="ImportExcel" enctype="multipart/form-data" method="post" class="form form-horizontal" id="form-add"> <div class="row cl"> <label class="form-label col-xs-4 col-sm-3"><span class="c-red">*</span>選擇Excel <span style="color:red;">xlsx</span> 導入:</label> <div class="formControls col-xs-8 col-sm-9"> @*//帶文本框*@ <span class="btn-upload form-group"> <input class="input-text upload-url radius" type="text" name="uploadfile" id="uploadfile" readonly> <a href="javascript:void();" class="btn btn-primary radius"> 瀏覽文件 </a> <input type="file" multiple name="fileinput" class="input-file" accept=".xlsx" /> </span> </div> </div> <div class="row cl"> <div class="col-xs-8 col-sm-9 col-xs-offset-4 col-sm-offset-3"> <input class="btn btn-primary radius" type="submit" value=" 提交 "> </div> </div> </form>
Action:
[HttpPost] public async Task<IActionResult> ImportExcel(IFormFile fileinput) { try { var filename = ContentDispositionHeaderValue.Parse(fileinput.ContentDisposition).FileName; // 原文件名(包括路徑) var extName = filename.Substring(filename.LastIndexOf(‘.‘)).Replace("\"", "");// 擴展名 string shortfilename = $"{Guid.NewGuid()}{extName}";// 新文件名 string fileSavePath = hostingEnvironment.WebRootPath + @"\upload\";//文件臨時目錄,導入完成後 刪除 filename = fileSavePath + shortfilename; // 新文件名(包括路徑) if (!Directory.Exists(fileSavePath)) { Directory.CreateDirectory(fileSavePath); } using (FileStream fs = System.IO.File.Create(filename)) // 創建新文件 { fileinput.CopyTo(fs);// 復制文件 fs.Flush();// 清空緩沖區數據 //根據 filename 【文件服務器磁盤路徑】可對文件進行業務操作 } //處理完成後,刪除上傳的文件 if (System.IO.File.Exists(filename)) { System.IO.File.Delete(filename); } return new JsonResult(importResult); } catch (Exception ex) { } }
.net core 上傳excel文件