java - Convert hexadecimal string (hex) to a binary string - Stack Overflow
I found the following way hex to binary conversion: String binAddr = Integer.toBinaryString(Integer.parseInt(hexAddr, 16)); While this approach works for small hex numbers, a hex ......