Java Byte Array Convert To bytes2nibbles(byte[] bytes)

Here you can find the source of bytes2nibbles(byte[] bytes)

Description

bytesnibbles

License

Apache License

Declaration

public static byte[] bytes2nibbles(byte[] bytes) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static byte[] bytes2nibbles(byte[] bytes) {
        byte[] nibb = new byte[bytes.length * 2];

        for (int i = 0; i < bytes.length; i++) {
            nibb[i * 2] = (byte) (bytes[i] >> 4);
            nibb[i * 2 + 1] = (byte) (bytes[i] & 0x0F);
        }/* w  ww.j  a v a2s. co m*/
        return nibb;
    }
}

Related

  1. bytes2Chars(byte[] bytes)
  2. bytes2humanReadable(long bytes)
  3. bytes2intLE(byte[] bytes, int offset, int len)
  4. bytes2ip(byte[] bytes)
  5. bytes2IPV4(byte[] addr, int offset)
  6. bytes2unique(byte[] daten, int offset)
  7. Bytes4ToInt(byte abyte0[], int offset)
  8. Bytes8ToLong(byte abyte0[], int offset)
  9. bytes_to_sbuf(byte[] data, int offset, int length, StringBuffer buf)