91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java如何實現處理字節的工具類

發布時間:2021-08-19 12:39:14 來源:億速云 閱讀:110 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關java如何實現處理字節的工具類,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

具體內容如下

package com.demo.utils;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.nio.charset.Charset;
import java.util.Arrays;

/**
 * 處理字節的常用工具類方法
 * @author dongyangyang
 * @Date 2017/3/13 12:31
 * @Version 1.0
 *
 */
public class ByteUtils {

 /**
  * 構造新字節時需要與的值表
  */
 private static final byte[] BUILD_BYTE_TABLE = new byte[] { (byte) 128, (byte) 64, (byte) 32, (byte) 16, (byte) 8, (byte) 4, (byte) 2, (byte) 1 };

 private ByteUtils() {}

 /**
  * short轉換到字節數組
  * 
  * @param number
  *   需要轉換的數據。
  * @return 轉換后的字節數組。
  */
 public static byte[] shortToByte(short number) {
  byte[] b = new byte[2];
  for (int i = 1; i >= 0; i--) {
   b[i] = (byte) (number % 256);
   number >>= 8;
  }
  return b;
 }

 /**
  * 字節到short轉換
  * 
  * @param b
  *   short的字節數組
  * @return short數值。
  */
 public static short byteToShort(byte[] b) {
  return (short) ((((b[0] & 0xff) << 8) | b[1] & 0xff));
 }

 /**
  * 整型轉換到字節數組
  * 
  * @param number
  *   整形數據。
  * @return 整形數據的字節數組。
  */
 public static byte[] intToByte(int number) {
  byte[] b = new byte[4];
  for (int i = 3; i >= 0; i--) {
   b[i] = (byte) (number % 256);
   number >>= 8;
  }
  return b;
 }

 /**
  * 字節數組到整型轉換
  * 
  * @param b
  *   整形數據的字節數組。
  * @return 字節數組轉換成的整形數據。
  */
 public static int byteToInt(byte[] b) {
  return ((((b[0] & 0xff) << 24) | ((b[1] & 0xff) << 16) | ((b[2] & 0xff) << 8) | (b[3] & 0xff)));
 }

 /**
  * long轉換到字節數組
  * 
  * @param number
  *   長整形數據。
  * @return 長整形轉換成的字節數組。
  */
 public static byte[] longToByte(long number) {
  byte[] b = new byte[8];
  for (int i = 7; i >= 0; i--) {
   b[i] = (byte) (number % 256);
   number >>= 8;
  }
  return b;
 }

 /**
  * 字節數組到整型的轉換
  * 
  * @param b
  *   長整形字節數組。
  * @return 長整形數據。
  */
 public static long byteToLong(byte[] b) {
  return ((((long) b[0] & 0xff) << 56) | (((long) b[1] & 0xff) << 48) | (((long) b[2] & 0xff) << 40) | (((long) b[3] & 0xff) << 32) | (((long) b[4] & 0xff) << 24)
    | (((long) b[5] & 0xff) << 16) | (((long) b[6] & 0xff) << 8) | ((long) b[7] & 0xff));
 }

 /**
  * double轉換到字節數組
  * 
  * @param d
  *   雙精度浮點。
  * @return 雙精度浮點的字節數組。
  */
 public static byte[] doubleToByte(double d) {
  byte[] bytes = new byte[8];
  long l = Double.doubleToLongBits(d);
  for (int i = 0; i < bytes.length; i++) {
   bytes[i] = Long.valueOf(l).byteValue();
   l = l >> 8;
  }
  return bytes;
 }

 /**
  * 字節數組到double轉換
  * 
  * @param b
  *   雙精度浮點字節數組。
  * @return 雙精度浮點數據。
  */
 public static double byteToDouble(byte[] b) {
  long l;
  l = b[0];
  l &= 0xff;
  l |= ((long) b[1] << 8);
  l &= 0xffff;
  l |= ((long) b[2] << 16);
  l &= 0xffffff;
  l |= ((long) b[3] << 24);
  l &= 0xffffffffl;
  l |= ((long) b[4] << 32);
  l &= 0xffffffffffl;

  l |= ((long) b[5] << 40);
  l &= 0xffffffffffffl;
  l |= ((long) b[6] << 48);
  l &= 0xffffffffffffffl;

  l |= ((long) b[7] << 56);

  return Double.longBitsToDouble(l);
 }

 /**
  * float轉換到字節數組
  * 
  * @param d
  *   浮點型數據。
  * @return 浮點型數據轉換后的字節數組。
  */
 public static byte[] floatToByte(float d) {
  byte[] bytes = new byte[4];
  int l = Float.floatToIntBits(d);
  for (int i = 0; i < bytes.length; i++) {
   bytes[i] = Integer.valueOf(l).byteValue();
   l = l >> 8;
  }
  return bytes;
 }

 /**
  * 字節數組到float的轉換
  * 
  * @param b
  *   浮點型數據字節數組。
  * @return 浮點型數據。
  */
 public static float byteToFloat(byte[] b) {
  int l;
  l = b[0];
  l &= 0xff;
  l |= ((long) b[1] << 8);
  l &= 0xffff;
  l |= ((long) b[2] << 16);
  l &= 0xffffff;
  l |= ((long) b[3] << 24);
  l &= 0xffffffffl;

  return Float.intBitsToFloat(l);
 }

 /**
  * 字符串到字節數組轉換
  * 
  * @param s
  *   字符串。
  * @param charset
  *   字符編碼
  * @return 字符串按相應字符編碼編碼后的字節數組。
  */
 public static byte[] stringToByte(String s, Charset charset) {
  return s.getBytes(charset);
 }

 /**
  * 字節數組帶字符串的轉換
  * 
  * @param b
  *   字符串按指定編碼轉換的字節數組。
  * @param charset
  *   字符編碼。
  * @return 字符串。
  */
 public static String byteToString(byte[] b, Charset charset) {
  return new String(b, charset);
 }

 /**
  * 對象轉換成字節數組。
  * 
  * @param obj
  *   字節數組。
  * @return 對象實例相應的序列化后的字節數組。
  * @throws IOException
  */
 public static byte[] objectToByte(Object obj) throws IOException {
  ByteArrayOutputStream buff = new ByteArrayOutputStream();
  ObjectOutputStream out = new ObjectOutputStream(buff);
  out.writeObject(obj);
  try {
   return buff.toByteArray();
  } finally {
   out.close();
  }
 }

 /**
  * 序死化字節數組轉換成實際對象。
  * 
  * @param b
  *   字節數組。
  * @return 對象。
  * @throws IOException
  * @throws ClassNotFoundException
  */
 public static Object byteToObject(byte[] b) throws IOException, ClassNotFoundException {
  ByteArrayInputStream buff = new ByteArrayInputStream(b);
  ObjectInputStream in = new ObjectInputStream(buff);
  Object obj = in.readObject();
  try {
   return obj;
  } finally {
   in.close();
  }
 }

 /**
  * 比較兩個字節的每一個bit位是否相等.
  * 
  * @param a
  *   比較的字節.
  * @param b
  *   比較的字節
  * @return ture 兩個字節每一位都相等,false有至少一位不相等.
  */
 public static boolean equalsBit(byte a, byte b) {
  return Arrays.equals(byteToBitArray(a), byteToBitArray(b));
 }

 /**
  * 比較兩個數組中的每一個字節,兩個字節必須二進制字節碼每一位都相同才表示兩個 byte相同.
  * 
  * @param a
  *   比較的字節數組.
  * @param b
  *   被比較的字節數.
  * @return ture每一個元素的每一位兩個數組都是相等的,false至少有一位不相等.
  */
 public static boolean equalsBit(byte[] a, byte[] b) {
  if (a == b) {
   return true;
  }
  if (a == null || b == null) {
   return false;
  }

  int length = a.length;
  if (b.length != length) {
   return false;
  }

  for (int count = 0; count < a.length; count++) {
   if (!equalsBit(a[count], b[count])) {
    return false;
   }
  }
  return true;
 }

 /**
  * 返回某個字節的bit組成的字符串.
  * 
  * @param b
  *   字節.
  * @return Bit位組成的字符串.
  */
 public static String bitString(byte b) {
  StringBuilder buff = new StringBuilder();
  boolean[] array = byteToBitArray(b);
  for (int i = 0; i < array.length; i++) {
   buff.append(array[i] ? 1 : 0);
  }
  return buff.toString();
 }

 /**
  * 計算出給定byte中的每一位,并以一個布爾數組返回. true表示為1,false表示為0.
  * 
  * @param b
  *   字節.
  * @return 指定字節的每一位bit組成的數組.
  */
 public static boolean[] byteToBitArray(byte b) {
  boolean[] buff = new boolean[8];
  int index = 0;
  for (int i = 7; i >= 0; i--) {
   buff[index++] = ((b >>> i) & 1) == 1;
  }
  return buff;
 }

 /**
  * 返回指定字節中指定bit位,true為1,false為0. 指定的位從0-7,超出將拋出數據越界異常.
  *
  * @param b
  *   需要判斷的字節.
  * @param index
  *   字節中指定位.
  * @return 指定位的值.
  */
 public static boolean byteBitValue(byte b, int index) {
  return byteToBitArray(b)[index];
 }

 /**
  * 根據布爾數組表示的二進制構造一個新的字節.
  * 
  * @param values
  *   布爾數組,其中true表示為1,false表示為0.
  * @return 構造的新字節.
  */
 public static byte buildNewByte(boolean[] values) {
  byte b = 0;
  for (int i = 0; i < 8; i++) {
   if (values[i]) {
    b |= BUILD_BYTE_TABLE[i];
   }
  }
  return b;
 }

 /**
  * 將指定字節中的某個bit位替換成指定的值,true代表1,false代表0.
  * 
  * @param b
  *   需要被替換的字節.
  * @param index
  *   位的序號,從0開始.超過7將拋出越界異常.
  * @param newValue
  *   新的值.
  * @return 替換好某個位值的新字節.
  */
 public static byte changeByteBitValue(byte b, int index, boolean newValue) {
  boolean[] bitValues = byteToBitArray(b);
  bitValues[index] = newValue;
  return buildNewByte(bitValues);
 }

 /**
  * 將指定的IP地址轉換成字節表示方式. IP數組的每一個數字都不能大于255,否則將拋出IllegalArgumentException異常.
  *
  * @param ipNums
  *   IP地址數組.
  * @return IP地址字節表示方式.
  */
 public static byte[] ipAddressBytes(String address) {
  if (address == null || address.length() < 0 || address.length() > 15) {
   throw new IllegalArgumentException("Invalid IP address.");
  }

  final int ipSize = 4;// 最大IP位數
  final char ipSpace = '.';// IP數字的分隔符
  int[] ipNums = new int[ipSize];
  StringBuilder number = new StringBuilder();// 當前操作的數字
  StringBuilder buff = new StringBuilder(address);
  int point = 0;// 當前操作的數字下標,最大到3.
  char currentChar;
  for (int i = 0; i < buff.length(); i++) {
   currentChar = buff.charAt(i);
   if (ipSpace == currentChar) {
    // 當前位置等于最大于序號后,還有字符沒有處理表示這是一個錯誤的IP.
    if (point == ipSize - 1 && buff.length() - (i + 1) > 0) {
     throw new IllegalArgumentException("Invalid IP address.");
    }
    ipNums[point++] = Integer.parseInt(number.toString());
    number.delete(0, number.length());
   } else {
    number.append(currentChar);
   }
  }
  ipNums[point] = Integer.parseInt(number.toString());

  byte[] ipBuff = new byte[ipSize];
  int pointNum = 0;
  for (int i = 0; i < 4; i++) {
   pointNum = Math.abs(ipNums[i]);
   if (pointNum > 255) {
    throw new IllegalArgumentException("Invalid IP address.");
   }
   ipBuff[i] = (byte) (pointNum & 0xff);
  }

  return ipBuff;
 }
}

關于“java如何實現處理字節的工具類”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

静安区| 浪卡子县| 屯门区| 泸水县| 马边| 广东省| 弥勒县| 泌阳县| 富裕县| 正定县| 东兴市| 太保市| 利津县| 安义县| 平乐县| 彭阳县| 无为县| 宜春市| 济南市| 保靖县| 兴安县| 荆州市| 淄博市| 辽宁省| 凤城市| 巴林右旗| 陈巴尔虎旗| 分宜县| 乌海市| 山东| 兴义市| 兴宁市| 张家川| 卢湾区| 富源县| 安丘市| 霍林郭勒市| 皋兰县| 湖州市| 石阡县| 秦安县|