String przez tablicę bajtów w Javie

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