I need to store 16 bytes in java.
How can i do the same.
Issue :
M = D || I
Here D
would be 8 bytes, I
would be 8 bytes and ||
denotes concatenation
so M
will be 128 bits or 16 Byte long.
How can i store M
in java datatype?
How about a byte array ?
byte[] data = new byte[16];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With