Android中 int 转换成 byte[] 的方法

/**
 * 将基本数据类型转换为byte数组,以及反向转换的方法
 * 只涉及转换操作,对于参数没有进行校验
 * 适用范围:RMS操作、网络数据传输
 */
public class DataConvert{
 /**
  * 将int类型的数据转换为byte数组
  * @param n int数据
  * @return 生成的byte数组
  */
 public static byte[] intToBytes(int n){
  String s = String.valueOf(n);
  return s.getBytes(); 
 }
 
 /**
  * 将byte数组转换为int数据
  * @param b 字节数组
  * @return 生成的int数据
  */
 public static int bytesToInt(byte[] b){
  String s = new String(b);
  return Integer.parseInt(s); 
 }
 
 /**
  * 将int类型的数据转换为byte数组
  * 原理:将int数据中的四个byte取出,分别存储
  * @param n int数据
  * @return 生成的byte数组
  */
 public static byte[] intToBytes2(int n){
  byte[] b = new byte[4];
  for(int i = 0;i < 4;i++){
   b[i] = (byte)(n >> (24 - i * 8)); 
  }
  return b;
 }
 
 /**
  * 将byte数组转换为int数据
  * @param b 字节数组
  * @return 生成的int数据
  */
 public static int byteToInt2(byte[] b){
  return (((int)b[0]) << 24) + (((int)b[1]) << 16) + (((int)b[2]) << 8) + b[3];
 }
}

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。