美文网首页
六号线晚报0529

六号线晚报0529

作者: z0nk1n | 来源:发表于2018-05-29 21:04 被阅读0次

天气:阴转晴 风力:微风

byte组合byte[]

  1. System.arraycopy()
  2. Arrays.copyOf() 内部使用#1实现,原理是新建一个大的字节数组,再复制进去
  3. 直接初始化byte[] bytes = {byte1, byte2, byte3};

byte[]与其他基本类型互转

  • 转自http://491569462-qq-com.iteye.com/blog/2054551

  • byte[]转基本类型实质是根据要转的类型循环取每一字节按位置偏移8、16、24等,并通过&0xFF、&0xFFFF、&0xFFFFFF去除高位1后 “|” 操作组合,最后输出或者通过Float.intBitsToFloat(),Double.longBitsToDouble()等转为所需类型

  • 基本类型转byte[]实质是先转为int、long等可又16进制表示的类型(Float.floatToIntBits()等),然后通过byteValue()取最高位的一个字节,再向右偏移8位取下一个字节

public class BytesCodec {

    //Byte和int之间的转换

    /**
     * 将32位的int值放到4字节的里
     *
     * @param num
     * @return
     */
    public static byte[] int2byteArray(int num) {
        byte[] result = new byte[4];
        result[0] = (byte) (num >>> 24);//取最高8位放到0下标
        result[1] = (byte) (num >>> 16);//取次高8为放到1下标
        result[2] = (byte) (num >>> 8); //取次低8位放到2下标
        result[3] = (byte) (num);      //取最低8位放到3下标
        return result;
    }

    /**
     * 将4字节的byte数组转成一个int值
     *
     * @param b
     * @return
     */
    public static int byteArray2int(byte[] b) {
        byte[] a = new byte[4];
        int i = a.length - 1, j = b.length - 1;
        for (; i >= 0; i--, j--) {//从b的尾部(即int值的低位)开始copy数据
            if (j >= 0)
                a[i] = b[j];
            else
                a[i] = 0;//如果b.length不足4,则将高位补0
        }
        int v0 = (a[0] & 0xff) << 24;//&0xff将byte值无差异转成int,避免Java自动类型提升后,会保留高位的符号位
        int v1 = (a[1] & 0xff) << 16;
        int v2 = (a[2] & 0xff) << 8;
        int v3 = (a[3] & 0xff);
        return v0 + v1 + v2 + v3;
    }


    //short和byte的互转

    /**
     * 转换short为byte
     *
     * @param b
     * @param s     需要转换的short
     * @param index
     */
    public static void putShort(byte b[], short s, int index) {
        b[index + 1] = (byte) (s >> 8);
        b[index + 0] = (byte) (s >> 0);
    }

    /**
     * 通过byte数组取到short
     *
     * @param b
     * @param index 第几位开始取
     * @return
     */
    public static short getShort(byte[] b, int index) {
        return (short) (((b[index + 1] << 8) | b[index + 0] & 0xff));
    }


    //byte和char类型的转换

    /**
     * 字符到字节转换
     *
     * @param ch
     * @return
     */
    public static void putChar(byte[] bb, char ch, int index) {
        int temp = (int) ch;
        // byte[] b = new byte[2];
        for (int i = 0; i < 2; i++) {
            // 将最高位保存在最低位
            bb[index + i] = new Integer(temp & 0xff).byteValue();
            temp = temp >> 8; // 向右移8位
        }
    }

    /**
     * 字节到字符转换
     *
     * @param b
     * @return
     */
    public static char getChar(byte[] b, int index) {
        int s = 0;
        if (b[index + 1] > 0)
            s += b[index + 1];
        else
            s += 256 + b[index + 0];
        s *= 256;
        if (b[index + 0] > 0)
            s += b[index + 1];
        else
            s += 256 + b[index + 0];
        char ch = (char) s;
        return ch;
    }


    //byte和float的转换

    /**
     * float转换byte
     *
     * @param bb
     * @param x
     * @param index
     */
    public static void putFloat(byte[] bb, float x, int index) {
        // byte[] b = new byte[4];
        int l = Float.floatToIntBits(x);
        for (int i = 0; i < 4; i++) {
            bb[index + i] = new Integer(l).byteValue();
            l = l >> 8;
        }
    }

    /**
     * 通过byte数组取得float
     *
     * @param b
     * @param index
     * @return
     */
    public static float getFloat(byte[] b, int index) {
        int l;
        l = b[index + 0];
        l &= 0xff;
        l |= ((long) b[index + 1] << 8);
        l &= 0xffff;
        l |= ((long) b[index + 2] << 16);
        l &= 0xffffff;
        l |= ((long) b[index + 3] << 24);
        return Float.intBitsToFloat(l);
    }


    //byte和double转换

    /**
     * double转换byte
     *
     * @param bb
     * @param x
     * @param index
     */
    public static void putDouble(byte[] bb, double x, int index) {
        // byte[] b = new byte[8];
        long l = Double.doubleToLongBits(x);
        for (int i = 0; i < 4; i++) {
            bb[index + i] = new Long(l).byteValue();
            l = l >> 8;
        }
    }

    /**
     * 通过byte数组取得float
     *
     * @param b
     * @param index
     * @return
     */
    public static double getDouble(byte[] b, int index) {
        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);
    }
}

相关文章

  • 六号线晚报0529

    天气:阴转晴 风力:微风 byte组合byte[] System.arraycopy() Arrays.copyO...

  • 六号线晚报

    终于我也坐了六号线

  • 六号线晚报0606

    天气:晴 风力:微风 会计政策、会计估计及其变更 1.会计政策 会计政策,是指企业在跨级确认、计量和报告中所采用的...

  • 六号线晚报0528

    天气:晴 风力:微风 为什么要 & 0xFF byte类型的数字要&0xff再赋值给int类型,其本质原因就是想保...

  • 六号线晚报0604

    天气:晴 风力:无风 tools.jar ---> javac 第一次遇到有项目里用到了tools.jar包,稍微...

  • 六号线晚报0527

    天气:阴 风力:微风 Java时间处理Java8 time包 未完待续

  • 六号线晚报0522

    天气:多云 风力:微风 回调 把实现回调接口的类对象传递到方法里面再利用此对象执行操作异步,即在在方法里启动另一...

  • 六号线晚报0523

    天气:晴 风力:微风 callable 1.callable是一个可以带返回值的多线程接口,类似runnable,...

  • 六号线晚报0524

    天气:晴 风力:无风 java十六进制转各种形式

  • 六号线晚报0531

    天气:阴 风力:微风 OSGi quickstart 插曲 打debug包的时候,执行mvn: resolver:...

网友评论

      本文标题:六号线晚报0529

      本文链接:https://www.haomeiwen.com/subject/didojftx.html