android byte[] 和short[]转换的方法代码

1,工具代码


代码如下:

public class BytesTransUtil {

private String TAG = "BytesTransUtil";
 private static BytesTransUtil instance = null;

private BytesTransUtil() {
  // Log.i(TAG, "instance BytesTransUtil");
 }

public static BytesTransUtil getInstance() {
  if (instance == null) {
   instance = new BytesTransUtil();
  }
  return instance;
 }

public boolean testCPU() {
  if (ByteOrder.nativeOrder() == ByteOrder.BIG_ENDIAN) {
   // System.out.println("is big ending");
   return true;
  } else {
   // System.out.println("is little ending");
   return false;
  }
 }

public byte[] getBytes(short s, boolean bBigEnding) {
  byte[] buf = new byte[2];
  if (bBigEnding)
   for (int i = buf.length - 1; i >= 0; i--) {
    buf[i] = (byte) (s & 0x00ff);
    s >>= 8;
   }
  else
   for (int i = 0; i < buf.length; i++) {
    buf[i] = (byte) (s & 0x00ff);
    s >>= 8;
   }
  return buf;
 }

public byte[] getBytes(int s, boolean bBigEnding) {
  byte[] buf = new byte[4];
  if (bBigEnding) {
   for (int i = buf.length - 1; i >= 0; i--) {
    buf[i] = (byte) (s & 0x000000ff);
    s >>= 8;
   }
  } else {
   System.out.println("1");
   for (int i = 0; i < buf.length; i++) {
    buf[i] = (byte) (s & 0x000000ff);
    s >>= 8;
   }
  }
  return buf;
 }

public byte[] getBytes(long s, boolean bBigEnding) {
  byte[] buf = new byte[8];
  if (bBigEnding)
   for (int i = buf.length - 1; i >= 0; i--) {
    buf[i] = (byte) (s & 0x00000000000000ff);
    s >>= 8;
   }
  else
   for (int i = 0; i < buf.length; i++) {
    buf[i] = (byte) (s & 0x00000000000000ff);
    s >>= 8;
   }
  return buf;
 }

public short getShort(byte[] buf, boolean bBigEnding) {
  if (buf == null) {
   throw new IllegalArgumentException("byte array is null!");
  }
  if (buf.length > 2) {
   throw new IllegalArgumentException("byte array size > 2 !");
  }
  short r = 0;
  if (bBigEnding) {
   for (int i = 0; i < buf.length; i++) {
    r <<= 8;
    r |= (buf[i] & 0x00ff);
   }
  } else {
   for (int i = buf.length - 1; i >= 0; i--) {
    r <<= 8;
    r |= (buf[i] & 0x00ff);
   }
  }

return r;
 }

public int getInt(byte[] buf, boolean bBigEnding) {
  if (buf == null) {
   throw new IllegalArgumentException("byte array is null!");
  }
  if (buf.length > 4) {
   throw new IllegalArgumentException("byte array size > 4 !");
  }
  int r = 0;
  if (bBigEnding) {
   for (int i = 0; i < buf.length; i++) {
    r <<= 8;
    r |= (buf[i] & 0x000000ff);
   }
  } else {
   for (int i = buf.length - 1; i >= 0; i--) {
    r <<= 8;
    r |= (buf[i] & 0x000000ff);
   }
  }
  return r;
 }

public long getLong(byte[] buf, boolean bBigEnding) {
  if (buf == null) {
   throw new IllegalArgumentException("byte array is null!");
  }
  if (buf.length > 8) {
   throw new IllegalArgumentException("byte array size > 8 !");
  }
  long r = 0;
  if (bBigEnding) {
   for (int i = 0; i < buf.length; i++) {
    r <<= 8;
    r |= (buf[i] & 0x00000000000000ff);
   }
  } else {
   for (int i = buf.length - 1; i >= 0; i--) {
    r <<= 8;
    r |= (buf[i] & 0x00000000000000ff);
   }
  }
  return r;
 }

/*----------------------------------------------------------*/
 /* 对转换进行一个简单的封装 */
 /*----------------------------------------------------------*/
 public byte[] getBytes(int i) {
  return getBytes(i, this.testCPU());
 }

public byte[] getBytes(short s) {
  return getBytes(s, this.testCPU());
 }

public byte[] getBytes(long l) {
  return getBytes(l, this.testCPU());
 }

public int getInt(byte[] buf) {
  return getInt(buf, this.testCPU());
 }

public short getShort(byte[] buf) {
  return getShort(buf, this.testCPU());
 }

public long getLong(byte[] buf) {
  return getLong(buf, this.testCPU());
 }

/****************************************/
 public short[] Bytes2Shorts(byte[] buf) {
  byte bLength = 2;
  short[] s = new short[buf.length / bLength];
  for (int iLoop = 0; iLoop < s.length; iLoop++) {
   byte[] temp = new byte[bLength];
   for (int jLoop = 0; jLoop < bLength; jLoop++) {
    temp[jLoop] = buf[iLoop * bLength + jLoop];
   }
   s[iLoop] = getShort(temp);
  }
  return s;
 }

public byte[] Shorts2Bytes(short[] s) {
  byte bLength = 2;
  byte[] buf = new byte[s.length * bLength];
  for (int iLoop = 0; iLoop < s.length; iLoop++) {
   byte[] temp = getBytes(s[iLoop]);
   for (int jLoop = 0; jLoop < bLength; jLoop++) {
    buf[iLoop * bLength + jLoop] = temp[jLoop];
   }
  }
  return buf;
 }

/****************************************/
 public int[] Bytes2Ints(byte[] buf) {
  byte bLength = 4;
  int[] s = new int[buf.length / bLength];
  for (int iLoop = 0; iLoop < s.length; iLoop++) {
   byte[] temp = new byte[bLength];
   for (int jLoop = 0; jLoop < bLength; jLoop++) {
    temp[jLoop] = buf[iLoop * bLength + jLoop];
   }
   s[iLoop] = getInt(temp);
   System.out.println("2out->"+s[iLoop]);
  }
  return s;
 }

public byte[] Ints2Bytes(int[] s) {
  byte bLength = 4;
  byte[] buf = new byte[s.length * bLength];
  for (int iLoop = 0; iLoop < s.length; iLoop++) {
   byte[] temp = getBytes(s[iLoop]);
   System.out.println("1out->"+s[iLoop]);
   for (int jLoop = 0; jLoop < bLength; jLoop++) {
    buf[iLoop * bLength + jLoop] = temp[jLoop];
   }
  }
  return buf;
 }

/****************************************/
 public long[] Bytes2Longs(byte[] buf) {
  byte bLength = 8;
  long[] s = new long[buf.length / bLength];
  for (int iLoop = 0; iLoop < s.length; iLoop++) {
   byte[] temp = new byte[bLength];
   for (int jLoop = 0; jLoop < bLength; jLoop++) {
    temp[jLoop] = buf[iLoop * bLength + jLoop];
   }
   s[iLoop] = getLong(temp);
  }
  return s;
 }

public byte[] Longs2Bytes(long[] s) {
  byte bLength = 8;
  byte[] buf = new byte[s.length * bLength];
  for (int iLoop = 0; iLoop < s.length; iLoop++) {
   byte[] temp = getBytes(s[iLoop]);
   for (int jLoop = 0; jLoop < bLength; jLoop++) {
    buf[iLoop * bLength + jLoop] = temp[jLoop];
   }
  }
  return buf;
 }

}

2,测试代码


代码如下:

public class main {

public static void main(String[] args) {
  // TODO Auto-generated method stub
  //简单测试了short[] 转byte[],其他类似;
  BytesTransUtil bytesTransUtil = BytesTransUtil.getInstance();
  int[] sTest = { 12345678, 87654321 };
  byte[] byteShort = bytesTransUtil.Ints2Bytes(sTest);
  int[] sTemp = bytesTransUtil.Bytes2Ints(byteShort);
  System.out.println("short[0] = " + sTemp[0] + "   short[1] = " + sTemp[1]);

}
}

(0)

相关推荐

  • android byte[] 和short[]转换的方法代码

    1,工具代码 复制代码 代码如下: public class BytesTransUtil { private String TAG = "BytesTransUtil"; private static BytesTransUtil instance = null; private BytesTransUtil() {  // Log.i(TAG, "instance BytesTransUtil"); } public static BytesTransUtil

  • C#实现Stream与byte[]之间的转换实例教程

    本文以实例形式详细介绍了C#实现Stream与byte[]之间的转换的方法,分享给大家供大家参考之用.具体方法如下: 一.二进制转换成图片 MemoryStream ms = new MemoryStream(bytes); ms.Position = 0; Image img = Image.FromStream(ms); ms.Close(); this.pictureBox1.Image 二.C#中byte[]与string的转换代码 1. System.Text.UnicodeEncod

  • java byte数组与int,long,short,byte的转换实现方法

    实例如下: public class DataTypeChangeHelper { /** * 将一个单字节的byte转换成32位的int * * @param b * byte * @return convert result */ public static int unsignedByteToInt(byte b) { return (int) b & 0xFF; } /** * 将一个单字节的Byte转换成十六进制的数 * * @param b * byte * @return conv

  • Android中执行java命令的方法及java代码执行并解析shell命令

    android中执行java命令的方法大家都晓得吗,下面一段内容给大家带来了具体解析. android的程序基于java开发,当我们接上调试器,执行adb shell,就可以执行linux命令,但是却并不能执行java命令. 那么在android的shell中是否就不能执行java程序了呢. 答案是否定的.我们可以通过app_process来执行java程序. 写一个hello world吧,就是刚开始学java的时候 写得那个hello world,这次要在android上运行. 用记事本新建

  • C#中Byte[]和String之间转换的方法

    本文给大家介绍如何在Byte[]和String之间进行转换? 比特(b):比特只有0 1,1代表有脉冲,0代表无脉冲.它是计算机物理内存保存的最基本单元. 字节(B):8个比特,0-255的整数表示 编码:字符必须编码后才能被计算机处理.早期计算机使用7为AscII编码,为了处理汉字设计了中文简体GB2312和big5 字符串与字节数组之间的转换,事实上是现实世界的信息和数字世界信息之间的转换,势必涉及到某种编码方式,不同的编码方式将导致不同的转换结果.C#中常使用System.Text.Enc

  • Android Uri和文件路径互相转换的实例代码

    在项目中需要用到将Uri转换为绝对路径,在网上找到一个方法,做个笔记 网上有不少方法,但是有的对4.4后的版本无效,这里的方法可以在4.4之后的版本将Uri转换为绝对路径 public class GetPathFromUri { /** * 专为Android4.4设计的从Uri获取文件绝对路径 */ public static String getPath(final Context context, final Uri uri) { final boolean isKitKat = Bui

  • java整数与byte数组的转换实现代码

    java整数与byte数组的转换实现代码            这里对java中整数与byte数组的转换进行了实现,平时的项目中很少用的到,但是特定需求的时候还是需要的,这里就记录下,亲测可用, 实现代码: public class NumberUtil { /** * int整数转换为4字节的byte数组 * * @param i * 整数 * @return byte数组 */ public static byte[] intToByte4(int i) { byte[] targets =

  • 基于Android中dp和px之间进行转换的实现代码

    在xml布局文件中,我们既可以设置px,也可以设置dp(或者dip).一般情况下,我们都会选择使用dp,这样可以保证不同屏幕分辨率的机器上布局一致.但是在代码中,如何处理呢?很多控件的方法中都只提供了设置px的方法,例如setPadding,并没有提供设置dp的方法.这个时候,如果需要设置dp的话,就要将dp转换成px了. 以下是一个应用类,方便进行px和dp之间的转换. 复制代码 代码如下: import android.content.Context; public class Densit

  • Android中Uri和Path之间的转换的示例代码

    Android中Uri和Path之间的转换 原因 调用系统拍照应用,拍照后要保存图片,那么我们需要指定一个存储图片路径的Uri.这就涉及到如何将file path转换为Uri.有时候我们还需要根据照片的路径得到照片的media Uri,那么又该如何转换呢? Android Uri to Path 现在遇到的常规Uri有两种: 媒体文件的Uri是content://, 表示这是一个数据库数据.去数据库查询正常返回. 其他的文件Uri是file://, 表示这个是一个文件.这个uri是通过Uri.f

  • Java中byte[]、String、Hex字符串等转换的方法

    代码如下所示: /*输入一个byte和byte[]合并为byte[]*/ public byte[] byteMerger(byte byte_1, byte[] byte_2) { byte[] byte_3 = new byte[1 + byte_2.length]; byte_3[0] = byte_1; System.arraycopy(byte_2, 0, byte_3, 1, byte_2.length); return byte_3; } /*输入一个byte[]和byte[]合并

随机推荐