Here you can find the source of hexStringToBytes(String hexString)
Parameter | Description |
---|---|
hexString | the hex string |
@SuppressLint("DefaultLocale") public static byte[] hexStringToBytes(String hexString)
//package com.java2s; import android.annotation.SuppressLint; public class Main { /**//from w w w . jav a2 s.c o m * Convert hex string to byte[] * * @param hexString * the hex string * @return byte[] */ @SuppressLint("DefaultLocale") public static byte[] hexStringToBytes(String hexString) { if (hexString == null || hexString.equals("")) { return null; } hexString = hexString.toUpperCase(); int byteArrayLength = hexString.length() / 2; char[] hexChars = hexString.toCharArray(); byte[] d = new byte[byteArrayLength]; for (int i = 0; i < byteArrayLength; i++) { int pos = i * 2; d[i] = (byte) (charToByte(hexChars[pos]) << 4 | charToByte(hexChars[pos + 1])); } return d; } /** * Convert char to byte * * @param c * char * @return byte */ private static byte charToByte(char c) { return (byte) "0123456789ABCDEF".indexOf(c); } }