search
尋找貓咪~QQ 地點 桃園市桃園區 Taoyuan , Taoyuan

C# string和byte[]的轉換 – jashliao部落格

C# string和byte[]的轉換


 

資料來源:http://isanhsu.blogspot.tw/2012/03/stringbyte-c.html

 

01.string類型轉成byte[]

  byte[] byteArray = System.Text.Encoding.Default.GetBytes ( str );

 

02.byte[]轉成string

  string str = System.Text.Encoding.Default.GetString ( byteArray );

 

03.16進制陣列轉字串 

        public static string ToHexString(byte[] bytes)
        {
            string hexString = string.Empty;
            if (bytes != null)
            {
                StringBuilder str = new StringBuilder();

                for (int i = 0; i < bytes.Length; i++)
                {
                    str.Append(bytes[i].ToString(“X2”));
                }
                hexString = str.ToString();
            }
            return hexString;
        }

 

03.字串轉16進制陣列

        public static byte[] GetBytes(string HexString)
        {
            int byteLength = HexString.Length / 2;
            byte[] bytes = new byte[byteLength];
            string hex;
            int j = 0;
            for (int i = 0; i < bytes.Length; i++)
            {
                hex = new String(new Char[] { HexString[j], HexString[j + 1] });
                bytes[i] = HexToByte(hex);
                j = j + 2;
            }
            return bytes;
        }
        public static byte HexToByte(string hex)
        {
            if (hex.Length > 2 || hex.Length <= 0)
                throw new ArgumentException(“hex must be 1 or 2 characters in length”);
            byte newByte = byte.Parse(hex, System.Globalization.NumberStyles.HexNumber);
            return newByte;
        }

 

 

 

 



熱門推薦

本文由 jashliaoeuwordpress 提供 原文連結

寵物協尋 相信 終究能找到回家的路
寫了7763篇文章,獲得2次喜歡
留言回覆
回覆
精彩推薦