Java mengonversi byte menjadi string

byte[] bytes = "hello".getBytes();
String s = new String(bytes, StandardCharsets.UTF_8);
Busy Badger