0

I've a string that already represents a byte array and i'd reconvert that string to that byte array. example:

String mystring = "[B@c209af9";
//byte[] arrb= content of mystring that already is a byte array;
SempriGno
  • 11
  • 2
  • 1
    Actually, `mystring` is not representing a byte array. The contents of `mystring` is what you get when you call `byte[].toString()` which is the `byte[]` array's *address in memory*. – Jonny Henly Jul 13 '21 at 02:25

0 Answers0