本文實(shí)例講述了asp.net基于Web Service實(shí)現(xiàn)遠(yuǎn)程上傳圖片的方法。分享給大家供大家參考,具體如下:
頁(yè)面調(diào)用代碼: 前提添加Web 引用
HttpFileCollection files = HttpContext.Current.Request.Files;
string filePath = files[0].FileName;
string fileName = filePath.Substring(filePath.LastIndexOf("http://") + 1);
byte[] datas = new byte[files[0].ContentLength];
System.IO.Stream fs;
localhost.WebService web = new localhost.WebService();
fs = (System.IO.Stream)files[0].InputStream;
//將輸入流讀入二維數(shù)組中
fs.Read(datas, 0, files[0].ContentLength);
fs.Close();
Response.Write(web.UploadFile(datas,fileName));
Web Service中代碼
[WebMethod(Description="上傳服務(wù)器圖片信息,返回是否成功")]
public string UploadFile(byte[] fs,string fileName)
{
//創(chuàng)建內(nèi)存流 將數(shù)組寫入內(nèi)存流中
MemoryStream memory = new MemoryStream(fs);
//把內(nèi)存的東西寫入文件流中
FileStream stream = new FileStream(HttpContext.Current.Server.MapPath(".") + "http://images" + fileName,FileMode.Create);
//將內(nèi)存流的東西寫入FileStream流中
memory.WriteTo(stream);
stream.Close();
memory = null;
stream = null;
return "文件上傳成功!";
}
希望本文所述對(duì)大家asp.net程序設(shè)計(jì)有所幫助。
您可能感興趣的文章:- .Net Core實(shí)現(xiàn)圖片文件上傳下載功能
- ASP.NET MVC圖片上傳前預(yù)覽簡(jiǎn)單實(shí)現(xiàn)
- ASP.NET MVC實(shí)現(xiàn)圖片上傳、圖片預(yù)覽顯示
- asp.net圖片文件的上傳與刪除方法
- asp.net+jquery.form實(shí)現(xiàn)圖片異步上傳的方法(附j(luò)query.form.js下載)
- .Net 實(shí)現(xiàn)圖片縮略圖上傳通用方法