上传文件获取Stream的方法

文件上传到服务器以后,需要取出流,比如说NPOI读取的时候要传入一个流。

方法一:上传之后,保存到服务器,然后通过路径读取文件;

保存:

System.Web.HttpPostedFile postFile = null;



<span style="white-space:pre">		</span>postFile = FileUpload1.PostedFile;
                string filepath = FileUpload1.PostedFile.FileName;
                string filename = filepath.Substring(filepath.LastIndexOf("\\") + 1);
                serverpath = Server.MapPath("../files/UploadFile/") + filename;
                FileUpload1.PostedFile.SaveAs(serverpath);



读取:

FileStream file = new FileStream(serverpath, FileMode.Open, FileAccess.Read)
workbook = new XSSFWorkbook(file);

方法二:上传之后,不保存,直接用FileUpload.FileContent直接取出流,这个返回的就是一个Stream;

workbook = new XSSFWorkbook(FileUpload1.FileContent);




你可能感兴趣的:(fileupload,Excel,NPOI)