91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何實現C# Web Services升級程序

發布時間:2021-12-01 14:17:03 來源:億速云 閱讀:227 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關如何實現C# Web Services升級程序,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

介紹一種用C# Web Services升級程序。通過C# Web Services升級程序就象讀寫本機文件一樣簡單。所以我就直接給出代碼。

C# Web Services升級程序部分代碼:

using System;  using System.Web;  using System.Web.Services;  using System.Web.Services.Protocols;  using System.IO;   [WebService(Namespace = "http://tempuri.org/")]  [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]  public class Service : System.Web.Services.WebService  {  public Service()  {  //如果使用設計的組件,請取消注釋以下行  //InitializeComponent();  }  /// <summary> /// 需要升級文件的服務器路徑  /// summary> private const string UpdateServerPath ="d:\\Debug";  [WebMethod(Description = "返回服務器上程序的版本號")]  public string ServerVer()  {  return "4.0";  }  [WebMethod(Description = "返回需更新的文件")]  public string[] NewFiles()  {  DirectoryInfo di = new DirectoryInfo(UpdateServerPath);  FileInfo[] fi = di.GetFiles();  int intFiles= fi.Length;  string[] myNewFiles = new string[intFiles];  int i = 0;  foreach (FileInfo fiTemp in fi)  {  myNewFiles[i] = fiTemp.Name;  System.Diagnostics.Debug.WriteLine(fiTemp.Name);  i++;  }   return myNewFiles;  }  [WebMethod(Description = "返回需更新的文件的大小")]  public int AllFileSize()  {  int filesize = 0;  string[] files = Directory.GetFiles(UpdateServerPath);  foreach (string file in files)  {  FileInfo myInfo = new FileInfo(file);  filesize += (int)myInfo.Length / 1024;  }  return filesize;  }   [WebMethod(Description = "返回給定文件的字節數組")]  public byte[] GetNewFile(string requestFileName)  {  ///得到服務器端的一個文件  if (requestFileName != null || requestFileName != "")  return getBinaryFile(UpdateServerPath + "\\"+requestFileName);  else  return null;  }   /// <summary> /// 返回所給文件路徑的字節數組。  /// summary> /// <param name="filename">param> /// <returns>returns> private byte[] getBinaryFile(string filename)  {  if (File.Exists(filename))  {  try  {  //打開現有文件以進行讀取。  FileStream s = File.OpenRead(filename);  return ConvertStreamToByteBuffer(s);  }  catch  {  return new byte[0];  }  }  else  {  return new byte[0];  }  }  /// <summary> /// 把給定的文件流轉換為二進制字節數組。  /// summary> /// <param name="theStream">param> /// <returns>returns> private byte[] ConvertStreamToByteBuffer(System.IO.Stream theStream)  {  int b1;  System.IO.MemoryStream tempStream = new System.IO.MemoryStream();  while ((b1 = theStream.ReadByte()) != -1)  {  tempStream.WriteByte(((byte)b1));  }  return tempStream.ToArray();  }   }

關于“如何實現C# Web Services升級程序”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

天等县| 长沙县| 雅安市| 海口市| 旬阳县| 远安县| 当阳市| 广水市| 来安县| 巨鹿县| 韩城市| 维西| 乐业县| 利津县| 南昌市| 河间市| 武安市| 万安县| 绥滨县| 克拉玛依市| 耿马| 新建县| 桂东县| 永昌县| 马山县| 宁国市| 清镇市| 南皮县| 多伦县| 郸城县| 兰考县| 洪江市| 伊吾县| 台中县| 秦安县| 吉木乃县| 山东| 金昌市| 和静县| 罗定市| 长顺县|