Is there any way to convert Java String to a byte[] (not the boxed Byte[])?
String
byte[]
Byte[]
In trying this:
System.ou
You can use String.getBytes() which returns the byte[] array.
String.getBytes()