欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

asp.net基于Web Service实现远程上传图片的方法

时间:2021-01-24 11:11:14|栏目:.NET代码|点击:

本文实例讲述了asp.net基于Web Service实现远程上传图片的方法。分享给大家供大家参考,具体如下:

页面调用代码: 前提添加Web 引用

HttpFileCollection files = HttpContext.Current.Request.Files;
string filePath = files[0].FileName;
string fileName = filePath.Substring(filePath.LastIndexOf("//") + 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;
//将输入流读入二维数组中
fs.Read(datas, 0, files[0].ContentLength);
fs.Close();
Response.Write(web.UploadFile(datas,fileName));

Web Service中代码

[WebMethod(Description="上传服务器图片信息,返回是否成功")]
public string UploadFile(byte[] fs,string fileName)
{
  //创建内存流 将数组写入内存流中
  MemoryStream memory = new MemoryStream(fs);
  //把内存的东西写入文件流中
  FileStream stream = new FileStream(HttpContext.Current.Server.MapPath(".") + "//images" + fileName,FileMode.Create);
  //将内存流的东西写入FileStream流中
  memory.WriteTo(stream);
  stream.Close();
  memory = null;
  stream = null;
  return "文件上传成功!";
}

希望本文所述对大家asp.net程序设计有所帮助。

上一篇:详述ASP.Net中页面之间传参方法

栏    目:.NET代码

下一篇:动态向页面添加控件和使用正则表达式的代码

本文标题:asp.net基于Web Service实现远程上传图片的方法

本文地址:http://www.codeinn.net/misctech/50646.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有