进制转换,类型转换

          //十六进制字符串转换为十进制
            string str = "0c";
            int i = int.Parse(str, System.Globalization.NumberStyles.HexNumber);  //输出i=12
            i = Convert.ToInt32(str, 16);  // //输出i=12

            


         //long型到byte[]
         public static byte[] getLongToBytes(long s, bool asc)  ///ASC=true正常升序输出,false降序输出
         {
           //  long L = 391768031; 
            byte[] buf = new byte[8];
            if (asc)
            {
                for (int i = 0; i < buf.Length; i++)
                {
                    buf[i] = (byte)(s & 0x00000000000000ff);  //和0与去掉高位数据,获取最低位数据
                    s >>= 8;   //右移8位
                }
            }
            else
            {
                for (int i = buf.Length - 1; i >= 0; i--)
                {
                    buf[i] = (byte)(s & 0x00000000000000ff);
                    s >>= 8;
                }
            }
            return buf;

         }



        //byte[]转换为long
         public static long getByteToLong(byte[] buf, bool asc)
         {
            if (buf == null) 
            {
               throw new Exception("byte array is null!");
             }
            if (buf.Length > 8) 
            {
                throw new Exception("byte array size > 8 !");
            }
            long r = 0;
            if (asc)
            {
                for (int i = 0; i < buf.Length; i++)  
                {
                    r <<= 8;
                    r |= buf[i] & (long)(0x00000000000000ff);
                   // r |= Convert.ToInt64((buf[i] & 0x00000000000000ff));
                }
            }
            else
                for (int i = buf.Length - 1; i >= 0; i--)
                {
                    r <<= 8;
                    r |= buf[i] & (long)(0x00000000000000ff);
                }
            return r;
        }


        /// <summary>
         /// 十六进制字符串转化为List<byte>
         /// </summary>
         /// <param name="str"></param>
         /// <returns></returns>
         public List<byte> HexStringTobytes(string str)
         {
             List<byte> lst = new List<byte>();
             string TmpStr = str.ToUpper().Replace("0X", "");
             try
             {
                 for (int i = 0; i < TmpStr.Length; i += 2)
                 {
                     int iStr = Convert.ToInt32(TmpStr.Substring(i, 2), 16);
                     lst.Add((byte)iStr);
                 }
                 // byte[] b = lst.ToArray();  //List<byte>转换为byte[]
             }
             catch (Exception e)
             {
                 lst = null;
             }
             return lst;
         }



.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值