亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

如何實現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

牡丹江市| 吉木萨尔县| 灵石县| 桃源县| 杭锦后旗| 柳州市| 额敏县| 峨边| 三明市| 启东市| 武邑县| 务川| 星子县| 和平区| 张掖市| 舞钢市| 正镶白旗| 正安县| 韶关市| 宁化县| 鄂伦春自治旗| 台安县| 江达县| 钟祥市| 大石桥市| 简阳市| 永登县| 罗定市| 荔浦县| 富源县| 中卫市| 定结县| 三江| 读书| 漾濞| 云阳县| 林周县| 潮安县| 通许县| 兴宁市| 东海县|