Possible Duplicate:
Why does byteArray have a length of 22 instead of 20?
I just cant figure this out Why Am I getting an error when converting like this
String mystring = "This is a String";
Log.v("string:", mystring);
Log.v("byte then string:", mystring.getBytes().toString());
The output is as follows
String: This is a string
byte then string: [B@44ecc390
Can anyone help ? I actually just want a string to be converted to bytes and the again to string.