package com.cebcreditcard.cfps2.slcc.lang;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.nio.charset.Charset;
/**
*
* bit工具类
*
*/
public final class BitUtil {
private BitUtil() {}
final static char[] HEX_DIGITS =
{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
final static int HALF_BYTE_MASK = 0x0f;
public static final Charset ASCII_CHARSET = Charset.forName("ASCII");
public static final Charset GBK_CHARSET = Charset.forName("GB18030");
public static final Charset UTF8_CHARSET = Charset.forName("UTF-8");
/**
* 把一个数值使用ASCII码的字节数组表示
*
* @param value 要拆分的数值
* @param size 要拆分的字节个数
* @return 拆分后的数组
*/
public static byte[] splitIntInAscii(int value, int size) {
String val = Integer.toString(value);
if (val.length() > size) {
throw new RuntimeException("数值[" + val + "]不能被分割成[" + size + "]个ASCII字符");
} else if (val.length() == size) {
return val.getBytes(ASCII_CHARSET);
} else {
return StrUtil.fillLeftWithZero(val, size).getBytes(ASCII_CHARSET);
}
}
/**
* 将字节转为ASCII字符串
* @param data 字节数组
* @return ASCII编码的字符串
*/
public static String toAsciiString(byte[] data) {
return new String(data, ASCII_CHARSET);
}
/**
* 将字节转为GBK字符串
* @param data 字节数组
* @return GBK编码的字符串
*/
public static String toGBKString(byte[] data) {
return new String(data, GBK_CHARSET);
}
/**
* 将字节转为ASCII字符串
* @param data 字节数组
* @param start 要开始编码的字节起始位置
* @param length 要进行编码的长度
* @return ASCII编码的字符串
*/
public static String toAsciiString(byte[] data, int start, int length) {
return new String(data, start, length, ASCII_CHARSET);
}
public static String toAsciiString(BytesRange bytes) {
return new String(bytes.data, bytes.offset, bytes.length, ASCII_CHARSET);
}
/**
* 将字节转为GBK字符串
* @param data 字节数组
* @param start 要开始编码的字节起始位置
* @param length 要进行编码的长度
* @return GBK编码的字符串
*/
public static String toGBKString(byte[] data, int start, int length) {
return new String(data, start, length, GBK_CHARSET);
}
public static String toGBKString(BytesRange bytes) {
return new String(bytes.data, bytes.offset, bytes.length, GBK_CHARSET);
}
/**
* 将字节转为UTF-8字符串
* @param data 字节数组
* @param start 要开始编码的字节起始位置
* @param length 要进行编码的长度
* @return UTF-8编码的字符串
*/
public static String toUtf8String(byte[] data, int start, int length) {
return new String(data, start, length, UTF8_CHARSET);
}
public static String toUtf8String(BytesRange bytes) {
return new String(bytes.data, bytes.offset, bytes.length, UTF8_CHARSET);
}
/**
* 将字符串编码成GBK对应的字节数组
*
* @param data GBK字符串
* @return GBK编码对应的字节数组
*/
public static byte[] toGBKBytes(String data) {
return data.getBytes(GBK_CHARSET);
}
/**
* 将字符串编码成UTF8对应的字节数组
* @param data UTF8编码的字符串
* @return UTF8编码对应的字节数组
*/
public static byte[] toUtf8Bytes(String data) {
return data.getBytes(UTF8_CHARSET);
}
/**
* 将字符数组编码成UTF8字符串
* @param data 字节数组
* @return UTF8编码对应的字符串
*/
public static String toUtf8String(byte[] data) {
return new String(data, UTF8_CHARSET);
}
/**
* 将一个byte数组转为hex表示的字符串
*
* 效果与 {@link BitUtil#toHexString(data, 0, data.length)} 相同
*
* @param data 要转换的数据
* @return 16进制全大写字符串
*/
public static String toHexString(byte[] data) {
return toHexString(data, 0, data.length);
}
/**
* 将一个byte转为hex表示的字符串
*
* 与Integer#toHexString不同,此方法不会省去前缀的0
*
* @param b 要转换的byte
* @return 2位的16进制全大写字符串
*/
public static String toHexString(byte b) {
char[] chars = new char[2];
chars[0] = HEX_DIGITS[(b >>> 4) & HALF_BYTE_MASK];
chars[1] = HEX_DIGITS[b & HALF_BYTE_MASK];
return new String(chars);
}
/**
* 将一个byte数组转为hex表示的字符串
*
* 效果是将每个byte转成两位的16进制表示,然后拼接起来
*
* @param bytes 要转换的byte数据
* @return 16进制全大写字符串
*/
public static String toHexString(BytesRange bytes) {
return toHexString(bytes.data, bytes.offset, bytes.length);
}
/**
* 将一个byte数组转为hex表示的字符串
*
* 效果是将每个byte转成两位的16进制表示,然后拼接起来
*
* @param data 要转换的byte数据
* @param start 转换数据起始位置
* @param length 要转换数据的长度
*
* @return 16进制全大写字符串
*/
public static String toHexString(byte[] data, int start, int length) {
char[] chars = new char[length * 2];
for (int i = 0; i < length; i++) {
int b = data[start + i];
chars[2 * i] = HEX_DIGITS[(b >>> 4) & HALF_BYTE_MASK];
chars[2 * i + 1] = HEX_DIGITS[b & HALF_BYTE_MASK];
}
return new String(chars);
}
/**
* 将字符串转成ASCII编码的字节数组
* @param asciiStr ASCII编码的字符串
* @return asciiStr对应的ASCII码字节数组
*/
public static byte[] toAsciiBytes(String asciiStr) {
return asciiStr.getBytes(ASCII_CHARSET);
}
/**
* 将一个数字拆分成byte数组
* 效果最终相当于byte[]展开成一个大的数字
* <p>
* 计算过程:
* 将最低位,赋值给数组的最末尾
* 将最高位,赋值给数组的最开头
*
* @param val 要拆分的数值
* @param cnt 要拆分成字节数组的长度
* @return 拆分后的数组
*/
public static byte[] splitIntInBytes(int val, int cnt) {
byte[] r = new byte[cnt];
for (int i = cnt - 1; i >= 0; i--) {
r[i] = (byte) ((val >>> (cnt - 1 - i) * 8) & 0xff);
}
return r;
}
/**
* 将一个数字拆分成byte数组
* 效果最终相当于byte[]展开成一个大的数字
* <p>
* 计算过程:
* 将最低位,赋值给数组的最末尾
* 将最高位,赋值给数组的最开头
*
* @param val 要拆分的数值
* @param cnt 要拆分成字节数组的长度
* @return 拆分后的数组
*/
public static byte[] splitLongInBytes(long val, int cnt) {
byte[] r = new byte[cnt];
for (int i = cnt - 1; i >= 0; i--) {
r[i] = (byte) ((val >>> (cnt - 1 - i) * 8) & 0xff);
}
return r;
}
/**
* 将bytes合并成一个int数据
* 效果相当于在内存中一个连续的字节段,表示的一个实际的整型值
* 将开头赋值给高位
* 将末尾赋值给低位
* 以4个字节为例
* bytes[0] bytes[1] bytes[2] bytes[3]
* 相当于
* bytes[0] 00000000 00000000 00000000
* 00000000 bytes[1] 00000000 00000000
* 00000000 00000000 bytes[2] 00000000
* 00000000 00000000 00000000 bytes[3]
*
* @param bytes
* @return
*/
public static int joinBytesToUnsignedInt(byte[] bytes) {
int r = 0;
for (int i = 0, cnt = bytes.length; i < cnt; i++) {
int mask = 0xff << ((cnt - i - 1) * 8);
r = r | ((bytes[i] << ((cnt - i - 1) * 8)) & mask);
}
return r;
}
public static int joinBytesToUnsignedInt(BytesRange bytesRange) {
int r = 0;
for (int i = bytesRange.offset, cnt = bytesRange.length + bytesRange.offset; i < cnt; i++) {
int mask = 0xff << ((cnt - i - 1) * 8);
r = r | ((bytesRange.data[i] << ((cnt - i - 1) * 8)) & mask);
}
return r;
}
public static long joinBytesToLong(byte[] bytes) {
long r = 0;
for (int i = 0, cnt = bytes.length; i < cnt; i++) {
long mask = 0xffL << ((cnt - i - 1) * 8);
long val = bytes[i] & 0xff;
r = r | ((val << ((cnt - i - 1) * 8)) & mask);
}
return r;
}
public static long joinBytesToLong(BytesRange bytesRange) {
return joinBytesToLong(bytesRange.getBytes());
}
/**
* 将 hex表示的字符串转为byte数组
*
* 从第一个字符开始,每两个字符,解释为一个字节
*
* 相比 Integer.parseInt(s, 16),此方法性能提升5倍左右
*
* @param hex 要转换的字符串
* @return 字符串表示的数组
*/
public static byte[] hex2Bytes(String hex) {
if (hex == null) {
throw new NumberFormatException("null");
}
int hexLen = hex.length();
if (hexLen % 2 != 0) {
throw new IllegalArgumentException("The length of " + hex + " is not an even number.");
}
char[] hexChars = hex.toCharArray();
byte[] bytes = new byte[hexLen / 2];
for (int i = 0; i < hexLen; i += 2) {
bytes[i / 2] = (byte) (Character.digit(hexChars[i], 16) * 16
+ Character.digit(hexChars[i + 1], 16));
}
return bytes;
}
/**
* 求两个int值的平均值
*
* 此方法可以避免两数之和超过int最大值之后造成的溢出
*
* 此方法会向下取整
* 注意:
* avg(Integer.MAX_VALUE,Integer.MIN_VALUE)->-1,并不是0
*
* 如果采取round up可以得到0
*
//round up
return (a | b) - ((a ^ b) >> 1);
//round down
return (a >> 1) + (b >> 1) + ((a & b) & 1);
*
*/
public static int avg(int a, int b) {
return (a >> 1) + (b >> 1) + ((a & b) & 1);
}
@SuppressWarnings("all")
public static <T> T cloneObj(T object) throws IOException, ClassNotFoundException {
if(object==null) return null;
ByteArrayOutputStream outBuffer = new ByteArrayOutputStream(4096);
ObjectOutputStream objOut = new ObjectOutputStream(outBuffer);
Serializable serializable = (Serializable)object;
objOut.writeObject(serializable);
objOut.close();
ByteArrayInputStream inputStream = new ByteArrayInputStream(outBuffer.toByteArray());
ObjectInputStream objIn = new ObjectInputStream(inputStream);
return (T) objIn.readObject();
}
/**
* 十进制->两字节十六进制
* visa header第4域使用
* @param value
* @return
*/
public static String toHexString(int value){
byte[] bytes = new byte[2];
bytes[0] = (byte) ( value >> 8 & 0xff);
bytes[1] = (byte) (value & 0xff);
return toHexString(bytes);
}
}
BitUtil(位工具类)
于 2023-10-24 11:18:06 首次发布