All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.eshore.tools.Bytes Maven / Gradle / Ivy

There is a newer version: 1.2.8
Show newest version
package com.eshore.tools;

import java.nio.ByteBuffer;

public class Bytes {
    private static final char[] DIGITS = {
            '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'
    };

    public static String toBinaryString(byte b) {
        int u = toUnsigned(b);
        return new String(new char[]{
                DIGITS[(u >>> 7) & 0x1],
                DIGITS[(u >>> 6) & 0x1],
                DIGITS[(u >>> 5) & 0x1],
                DIGITS[(u >>> 4) & 0x1],
                DIGITS[(u >>> 3) & 0x1],
                DIGITS[(u >>> 2) & 0x1],
                DIGITS[(u >>> 1) & 0x1],
                DIGITS[u & 0x1]
        });
    }

    public static String toBinaryString(byte... bytes) {
        char[] buffer = new char[bytes.length * 8];
        for (int i = 0, j = 0; i < bytes.length; ++i) {
            int u = toUnsigned(bytes[i]);
            buffer[j++] = DIGITS[(u >>> 7) & 0x1];
            buffer[j++] = DIGITS[(u >>> 6) & 0x1];
            buffer[j++] = DIGITS[(u >>> 5) & 0x1];
            buffer[j++] = DIGITS[(u >>> 4) & 0x1];
            buffer[j++] = DIGITS[(u >>> 3) & 0x1];
            buffer[j++] = DIGITS[(u >>> 2) & 0x1];
            buffer[j++] = DIGITS[(u >>> 1) & 0x1];
            buffer[j++] = DIGITS[u & 0x1];
        }
        return new String(buffer);
    }

    public static String toHexString(byte b) {
        int u = toUnsigned(b);
        return new String(new char[]{
                DIGITS[u >>> 4],
                DIGITS[u & 0xf]
        });
    }

    public static String toHexString(byte... bytes) {
        char[] buffer = new char[bytes.length * 2];
        for (int i = 0, j = 0; i < bytes.length; ++i) {
            int u = toUnsigned(bytes[i]);
            buffer[j++] = DIGITS[u >>> 4];
            buffer[j++] = DIGITS[u & 0xf];
        }
        return new String(buffer);
    }

    private static int toUnsigned(byte b) {
        return b < 0 ? b + 256 : b;
    }
    
    public static String toHexString(int num){
    	return toHexString(ByteBuffer.allocate(4).putInt(num).array());
    }
    
    public static String toHexString(short num){
    	return toHexString(ByteBuffer.allocate(2).putShort(num).array());
    }
    public static String toHexString(char num){
    	return toHexString(ByteBuffer.allocate(2).putChar(num).array());
    }
    
    public static void main(String[] args){
    	System.out.println(toHexString((short)127));
    	System.out.println(toHexString('a'));
    	System.out.println(toHexString('国'));
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy