码迷,mamicode.com
首页 > 其他好文 > 详细

c# int与byte[]转换

时间:2014-07-21 23:29:20      阅读:367      评论:0      收藏:0      [点我收藏+]

标签:style   os   re   c   div   line   

网络上总结的方法汇总:

1: public byte[] intToByte(int i) {

        byte[] abyte0 = new byte[4];


        abyte0[0] = (byte) (0xff & i);


        abyte0[1] = (byte) ((0xff00 & i) >> 8);


        abyte0[2] = (byte) ((0xff0000 & i) >> 16);


        abyte0[3] = (byte) ((0xff000000 & i) >> 24);


        return abyte0;


    }


    public  static int bytesToInt(byte[] bytes) {


        int addr = bytes[0] & 0xFF;


        addr |= ((bytes[1] << 8) & 0xFF00);


        addr |= ((bytes[2] << 16) & 0xFF0000);


        addr |= ((bytes[3] << 24) & 0xFF000000);


        return addr;


    }

2: using system;

static void Main(string[] args)
        {
            byte[] bt=new byte[4];
            bt[0] = 255;
            bt[1] = 255;
            int it=65535 ;
            
            bt = BitConverter.GetBytes(it);
            //Console.WriteLine(bt.ToString());

     it = BitConverter.ToInt64(bt,0);
            //Console.WriteLine(it);
            //Console.ReadLine();
        }

3:先转换为string再互换?这个没试验成功。

在用第一种方法时很方便;

第二种注意若byte[]维度大于4则会截断;若小于4,会出错,因为内部实现方法就是1:,找不到[3]当然会出错。

当然你可以继续测试,扩展为Int64,相应的byte[]维度需要达到8;同样短了出错,长了截断。



c# int与byte[]转换,布布扣,bubuko.com

c# int与byte[]转换

标签:style   os   re   c   div   line   

原文地址:http://blog.csdn.net/zhhz418418/article/details/38023973

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!