Строка по байтовому массиву в Java

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