Javaにおけるbyte[]やString、Hex文字列などの変換
2044 ワード
/* byte byte[] byte[]*/
public byte[] byteMerger(byte byte_1, byte[] byte_2) {
byte[] byte_3 = new byte[1 + byte_2.length];
byte_3[0] = byte_1;
System.arraycopy(byte_2, 0, byte_3, 1, byte_2.length);
return byte_3;
}
/* byte[] byte[] byte[]*/
public byte[] byteMerger(byte[] byte_1, byte[] byte_2) {
byte[] byte_3 = new byte[1 + byte_2.length];
byte_3[0] = byte_1;
System.arraycopy(byte_2, 0, byte_3, byte_1.length, byte_2.length);
return byte_3;
}
/* string(16 hex eg:ff) 16 byte[], hex */
public byte[] hexStringToByte(String hex) {
int len = (hex.length() / 2);
byte[] result = new byte[len];
char[] achar = hex.toCharArray();
for (int i = 0; i < len; i++) {
int pos = i * 2;
result[i] = (byte) (charToByte(achar[pos]) << 4 | charToByte(achar[pos + 1]));
}
//System.out.println(Arrays.toString(result));
return result;
}
private byte charToByte(char c) {
//return (byte) "0123456789ABCDEF".indexOf(c);
return (byte) "0123456789abcdef".indexOf(c);
}
/* 10 , hex (2 ,eg: f 0f)*/
String value= "100";
int parseInt = Integer.parseInt(value, 10);
String hexString = Integer.toHexString(parseInt);
if (hexString.length() < 2) {
hexString = '0' + hexString;
}
header = header + hexString;
}
/* 16 byte[] 16 */
public static String byteArrayToHexStr(byte[] byteArray) {
if (byteArray == null) {
return null;
}
char[] hexArray = "0123456789ABCDEF".toCharArray();
char[] hexChars = new char[byteArray.length * 2];
for (int j = 0; j < byteArray.length; j++) {
int v = byteArray[j] & 0xFF;
hexChars[j * 2] = hexArray[v >>> 4];
hexChars[j * 2 + 1] = hexArray[v & 0x0F];
}
return new String(hexChars);
}