Is it possible to convert a string to byte array and then convert it back to the original string in Java or Android?
My objective is to send some strings to a microc
Use [String.getBytes()][1] to convert to bytes and use [String(byte[] data)][2] constructor to convert back to string.
[String.getBytes()][1]
[String(byte[] data)][2]