java的bits包中编写了一系列的将数据从byte变为基本类型和把基本类型转换为byte数组的方法
/** * Utility methods for packing/unpacking primitive values in/out of byte arrays * using big-endian byte ordering. * 使用big-endian(大端模式)字节顺序将原始值打包/解包到字节数组中的实用方法。 */ class Bits { /* * Methods for unpacking primitive values from byte arrays starting at * given offsets. * 从给定偏移量开始的字节数组解压缩原始值的方法。 * */ /** * 对指定的字节数组读取看这个数组中存储的boolean的值,虽然这里存储的是字节数组但是根据官方文档的描述 * Java的boolean并没有给出明确的是一个字节还是多个字节,可能根据需要是有所变化的,但是很明确的就是不管是多少个字节 * boolean仅仅受一个位bit的影响,当前这个方法根据偏移量来返回boolean的值 * @param b 字节数组 * @param off 偏移量 * @return */ static boolean getBoolean(byte[] b, int off) { return b[off] != 0; } /** * 根据字节数组和偏移量来获取char数据。 * 根据Java的定义,char的大小为16位bit两个字节,根据偏移量找到两个字节, * 通过与操作将16进制数据转化为二进制数据, * 第一个字节作为高位字节扩大2的8次幂加上第二个字节 * @param b * @param off * @return */ static char getChar(byte[] b, int off) { return (char) ((b[off + 1] & 0xFF) + (b[off] << 8)); } /** * short为2字节的短整形,这里根据偏移量读取1个字节, * 第一个字节作为高位字节扩大2的8次幂加上第二个字节,根上面的char方法基本一样 * @param b * @param off * @return */ static short getShort(byte[] b, int off) { return (short) ((b[off + 1] & 0xFF) + (b[off] << 8)); } /** *int根据jvm的规范来看是一个U4的数据,占据4个字节32位比特。 * 这里就是对每个字节的16进制进行转换并累加 * @param b * @param off * @return */ static int getInt(byte[] b, int off) { return ((b[off + 3] & 0xFF) ) + ((b[off + 2] & 0xFF) << 8) + ((b[off + 1] & 0xFF) << 16) + ((b[off ] ) << 24); } /** * float是U4的浮点型这里调用了float的方法,在float那边写了注释,也是数据的转换大同小异 * @param b * @param off * @return */ static float getFloat(byte[] b, int off) { return Float.intBitsToFloat(getInt(b, off)); } /** * 这个是U8的长整形,根int原理一样 * @param b * @param off * @return */ static long getLong(byte[] b, int off) { return ((b[off + 7] & 0xFFL) ) + ((b[off + 6] & 0xFFL) << 8) + ((b[off + 5] & 0xFFL) << 16) + ((b[off + 4] & 0xFFL) << 24) + ((b[off + 3] & 0xFFL) << 32) + ((b[off + 2] & 0xFFL) << 40) + ((b[off + 1] & 0xFFL) << 48) + (((long) b[off]) << 56); } static double getDouble(byte[] b, int off) { return Double.longBitsToDouble(getLong(b, off)); } /* * Methods for packing primitive values into byte arrays starting at given * offsets. * 将原始值打包到以给定偏移量开头的字节数组中的方法。 * 这些方法也都是根据位数一次移位并写入到数组中 */ /** * 将Java程序内的一个boolean写入到指定的字节数组中 * @param b * @param off * @param val */ static void putBoolean(byte[] b, int off, boolean val) { b[off] = (byte) (val ? 1 : 0); } static void putChar(byte[] b, int off, char val) { b[off + 1] = (byte) (val ); b[off ] = (byte) (val >>> 8); } static void putShort(byte[] b, int off, short val) { b[off + 1] = (byte) (val ); b[off ] = (byte) (val >>> 8); } static void putInt(byte[] b, int off, int val) { b[off + 3] = (byte) (val ); b[off + 2] = (byte) (val >>> 8); b[off + 1] = (byte) (val >>> 16); b[off ] = (byte) (val >>> 24); } static void putFloat(byte[] b, int off, float val) { putInt(b, off, Float.floatToIntBits(val)); } static void putLong(byte[] b, int off, long val) { b[off + 7] = (byte) (val ); b[off + 6] = (byte) (val >>> 8); b[off + 5] = (byte) (val >>> 16); b[off + 4] = (byte) (val >>> 24); b[off + 3] = (byte) (val >>> 32); b[off + 2] = (byte) (val >>> 40); b[off + 1] = (byte) (val >>> 48); b[off ] = (byte) (val >>> 56); } static void putDouble(byte[] b, int off, double val) { putLong(b, off, Double.doubleToLongBits(val)); } }