Convert byte[] to string in JAVA 29-12-2015 18:44:53 Java / Type Conversion 0 Bookmark(s) 160 View(s) The constructor of theString takes a byte[]: byte[] byteArray = new byte[] {01, 02, 03}; String value = new String(byteArray, "UTF-8");