byte[]数组和int之间的转换 (ios)

JAVA:

1、int与byte[]之间的转换(类似的byte short,long型)

/**

* 将int数值转换为占四个字节的byte数组,本方法适用于(低位在前,高位在后)的顺序。 和bytesToInt()配套使用

* @param value

*            要转换的int值

* @return byte数组

*/

public static byte[] intToBytes( int value )

{

byte[] src = new byte[4];

src[3] =  (byte) ((value>>24) & 0xFF);

src[2] =  (byte) ((value>>16) & 0xFF);

src[1] =  (byte) ((value>>8) & 0xFF);

src[0] =  (byte) (value & 0xFF);

return src;

}

/**

* 将int数值转换为占四个字节的byte数组,本方法适用于(高位在前,低位在后)的顺序。  和bytesToInt2()配套使用

*/

public static byte[] intToBytes2(int value)

{

byte[] src = new byte[4];

src[0] = (byte) ((value>>24) & 0xFF);

src[1] = (byte) ((value>>16)& 0xFF);

src[2] = (byte) ((value>>8)&0xFF);

src[3] = (byte) (value & 0xFF);

return src;

}

byte[]转int

/**

* byte数组中取int数值,本方法适用于(低位在前,高位在后)的顺序,和和intToBytes()配套使用

*

* @param src

*            byte数组

* @param offset

*            从数组的第offset位开始

* @return int数值

*/

public static int bytesToInt(byte[] src, int offset) {

int value;

value = (int) ((src[offset] & 0xFF)

| ((src[offset+1] & 0xFF)<<8)

| ((src[offset+2] & 0xFF)<<16)

| ((src[offset+3] & 0xFF)<<24));

return value;

}

/**

* byte数组中取int数值,本方法适用于(低位在后,高位在前)的顺序。和intToBytes2()配套使用

*/

public static int bytesToInt2(byte[] src, int offset) {

int value;

value = (int) ( ((src[offset] & 0xFF)<<24)

|((src[offset+1] & 0xFF)<<16)

|((src[offset+2] & 0xFF)<<8)

|(src[offset+3] & 0xFF));

return value;

}

第二种:

1、int与byte[]之间的转换(类似的byte short,long型)

/**

* 将int数值转换为占四个字节的byte数组,本方法适用于(低位在前,高位在后)的顺序。

* @param value

*            要转换的int值

* @return byte数组

*/

public static byte[] intToBytes(int value)

{

byte[] byte_src = new byte[4];

byte_src[3] = (byte) ((value & 0xFF000000)>>24);

byte_src[2] = (byte) ((value & 0x00FF0000)>>16);

byte_src[1] = (byte) ((value & 0x0000FF00)>>8);

byte_src[0] = (byte) ((value & 0x000000FF));

return byte_src;

}

byte[]转int

/**

* byte数组中取int数值,本方法适用于(低位在前,高位在后)的顺序。

*

* @param ary

*            byte数组

* @param offset

*            从数组的第offset位开始

* @return int数值

*/

public static int bytesToInt(byte[] ary, int offset) {

int value;

value = (int) ((ary[offset]&0xFF)

| ((ary[offset+1]<<8) & 0xFF00)

| ((ary[offset+2]<<16)& 0xFF0000)

| ((ary[offset+3]<<24) & 0xFF000000));

return value;

}

IOS:


//此代码是低位在前  高位在后,

//如果是低位在后 那就把index掉头处理,

//这是4字节byte的处理,如果是其他字节,灵活变动下

int value = 2222;

Byte byte[4] = {};

byte[0] =  (Byte) ((value>>24) & 0xFF);

byte[1] =  (Byte) ((value>>16) & 0xFF);

byte[2] =  (Byte) ((value>>8) & 0xFF);

byte[3] =  (Byte) (value & 0xFF);

打印出来的byte[0],byte[1]....是十进制数    不要认为是十六进制。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,886评论 18 139
  • 背景 一年多以前我在知乎上答了有关LeetCode的问题, 分享了一些自己做题目的经验。 张土汪:刷leetcod...
    土汪阅读 12,768评论 0 33
  • 说明本次redis集群安装在rhel6.8 64位机器上,redis版本为3.2.8,redis的gem文件版本为...
    读或写阅读 15,098评论 3 9
  • 1. Java基础部分 基础部分的顺序:基本语法,类相关的语法,内部类的语法,继承相关的语法,异常的语法,线程的语...
    子非鱼_t_阅读 31,759评论 18 399
  • 于我而言,最喜欢的出行方式便是搭火车。这种情愫由来,从时间点上最早可以追溯到98洪水那年。时年夏季,雨水连线天...
    七年的年头阅读 215评论 0 1