String dengan array byte di java

 String str = "Example String";
 byte[] b = str.getBytes();
Handsome Heron