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

com.jyroscope.util.Hex Maven / Gradle / Ivy

There is a newer version: 0.0.39
Show newest version
package com.jyroscope.util;

public class Hex {
	
	private static final char[] HEX = {
		'0', '1', '2', '3', '4', '5', '6', '7',
		'8', '9', 'a', 'b', 'c', 'd', 'e', 'f'
	};
	
	public static String toHex(byte[] data) {
		StringBuilder builder = new StringBuilder(data.length * 2);
		for (int i=0; i> 4]);
			builder.append(HEX[value & 0x0f]);
		}
		return builder.toString();
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy