String von Byte Array in Java

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