java byte array with int long short byte conversion implementation method

  • 2020-05-10 18:07:43
  • OfStack

Examples are as follows:


public class DataTypeChangeHelper { 
  /** 
   *  will 1 A single byte byte Converted to 32 bit int 
   * 
   * @param b 
   *      byte 
   * @return convert result 
   */ 
  public static int unsignedByteToInt(byte b) { 
    return (int) b & 0xFF; 
  } 
 
  /** 
   *  will 1 A single byte Byte Converted to 106 Hexadecimal number  
   * 
   * @param b 
   *      byte 
   * @return convert result 
   */ 
  public static String byteToHex(byte b) { 
    int i = b & 0xFF; 
    return Integer.toHexString(i); 
  } 
 
  /** 
   *  will 1 a 4byte The array is converted to 32 bit int 
   * 
   * @param buf 
   *      bytes buffer 
   * @param byte[] The position where the conversion begins  
   * @return convert result 
   */ 
  public static long unsigned4BytesToInt(byte[] buf, int pos) { 
    int firstByte = 0; 
    int secondByte = 0; 
    int thirdByte = 0; 
    int fourthByte = 0; 
    int index = pos; 
    firstByte = (0x000000FF & ((int) buf[index])); 
    secondByte = (0x000000FF & ((int) buf[index + 1])); 
    thirdByte = (0x000000FF & ((int) buf[index + 2])); 
    fourthByte = (0x000000FF & ((int) buf[index + 3])); 
    index = index + 4; 
    return ((long) (firstByte << 24 | secondByte << 16 | thirdByte << 8 | fourthByte)) & 0xFFFFFFFFL; 
  } 
 
  /** 
   *  will 16 bit short Converted to byte An array of  
   * 
   * @param s 
   *      short 
   * @return byte[]  Length of 2 
   * */ 
  public static byte[] shortToByteArray(short s) { 
    byte[] targets = new byte[2]; 
    for (int i = 0; i < 2; i++) { 
      int offset = (targets.length - 1 - i) * 8; 
      targets[i] = (byte) ((s >>> offset) & 0xff); 
    } 
    return targets; 
  } 
 
  /** 
   *  will 32 Bit integer conversion length is 4 the byte An array of  
   * 
   * @param s 
   *      int 
   * @return byte[] 
   * */ 
  public static byte[] intToByteArray(int s) { 
    byte[] targets = new byte[2]; 
    for (int i = 0; i < 4; i++) { 
      int offset = (targets.length - 1 - i) * 8; 
      targets[i] = (byte) ((s >>> offset) & 0xff); 
    } 
    return targets; 
  } 
 
  /** 
   * long to byte[] 
   * 
   * @param s 
   *      long 
   * @return byte[] 
   * */ 
  public static byte[] longToByteArray(long s) { 
    byte[] targets = new byte[2]; 
    for (int i = 0; i < 8; i++) { 
      int offset = (targets.length - 1 - i) * 8; 
      targets[i] = (byte) ((s >>> offset) & 0xff); 
    } 
    return targets; 
  } 
 
  /**32 position int turn byte[]*/ 
  public static byte[] int2byte(int res) { 
    byte[] targets = new byte[4]; 
    targets[0] = (byte) (res & 0xff);//  Its lowest  
    targets[1] = (byte) ((res >> 8) & 0xff);//  A low  
    targets[2] = (byte) ((res >> 16) & 0xff);//  Time high  
    targets[3] = (byte) (res >>> 24);//  highest , Unsigned right shift.  
    return targets; 
  } 
 
  /** 
   *  The length is 2 the byte Array to 16 position int 
   * 
   * @param res 
   *      byte[] 
   * @return int 
   * */ 
  public static int byte2int(byte[] res) { 
    // res = InversionByte(res); 
    // 1 a byte Data on the left 24 A into 0x??000000 , and then moves to the right 8 A into 0x00??0000 
    int targets = (res[0] & 0xff) | ((res[1] << 8) & 0xff00); // |  Is the position or  
    return targets; 
  } 
} 

Related articles: