這篇文章給大家分享的是有關(guān)byte常用擴展有哪些的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
公司主營業(yè)務(wù):成都做網(wǎng)站、成都網(wǎng)站設(shè)計、移動網(wǎng)站開發(fā)等業(yè)務(wù)。幫助企業(yè)客戶真正實現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競爭能力。創(chuàng)新互聯(lián)公司是一支青春激揚、勤奮敬業(yè)、活力青春激揚、勤奮敬業(yè)、活力澎湃、和諧高效的團隊。公司秉承以“開放、自由、嚴謹、自律”為核心的企業(yè)文化,感謝他們對我們的高要求,感謝他們從不同領(lǐng)域給我們帶來的挑戰(zhàn),讓我們激情的團隊有機會用頭腦與智慧不斷的給客戶帶來驚喜。創(chuàng)新互聯(lián)公司推出劍川免費做網(wǎng)站回饋大家。
byte常用擴展應(yīng)用一:轉(zhuǎn)換為十六進制字符串
public static string ToHex(this byte b) { return b.ToString("X2"); } public static string ToHex(this IEnumerable< byte> bytes) { var sb = new StringBuilder(); foreach (byte b in bytes) sb.Append(b.ToString("X2")); return sb.ToString(); }
第二個擴展返回的十六進制字符串是連著的,一些情況下為了閱讀方便會用一個空格分開,處理比較簡單,不再給出示例。
byte常用擴展應(yīng)用二:轉(zhuǎn)換為Base64字符串
public static string ToBase64String(byte[] bytes) { return Convert.ToBase64String(bytes); }
byte常用擴展應(yīng)用三:轉(zhuǎn)換為基礎(chǔ)數(shù)據(jù)類型
public static int ToInt(this byte[] value, int startIndex) { return BitConverter.ToInt32(value, startIndex); } public static long ToInt64(this byte[] value, int startIndex) { return BitConverter.ToInt64(value, startIndex); }
BitConverter類還有很多方法(ToSingle、ToDouble、ToChar...),可以如上進行擴展。
byte常用擴展應(yīng)用四:轉(zhuǎn)換為指定編碼的字符串
public static string Decode(this byte[] data, Encoding encoding) { return encoding.GetString(data); }
byte常用擴展應(yīng)用五:Hash
//使用指定算法Hash public static byte[] Hash(this byte[] data, string hashName) { HashAlgorithm algorithm; if (string.IsNullOrEmpty(hashName)) algorithm = HashAlgorithm.Create(); else algorithm = HashAlgorithm.Create(hashName); return algorithm.ComputeHash(data); } //使用默認算法Hash public static byte[] Hash(this byte[] data) { return Hash(data, null); }
byte常用擴展應(yīng)用六:位運算
//index從0開始 //獲取取第index是否為1 public static bool GetBit(this byte b, int index) { return (b & (1 < < index)) > 0; } //將第index位設(shè)為1 public static byte SetBit(this byte b, int index) { b |= (byte)(1 < < index); return b; } //將第index位設(shè)為0 public static byte ClearBit(this byte b, int index) { b &= (byte)((1 < < 8) - 1 - (1 < < index)); return b; } //將第index位取反 public static byte ReverseBit(this byte b, int index) { b ^= (byte)(1 < < index); return b; }
byte常用擴展應(yīng)用七:保存為文件
public static void Save(this byte[] data, string path) { File.WriteAllBytes(path, data); }
byte常用擴展應(yīng)用八:轉(zhuǎn)換為內(nèi)存流
public static MemoryStream ToMemoryStream(this byte[] data) { return new MemoryStream(data); }
感謝各位的閱讀!關(guān)于“byte常用擴展有哪些”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!