Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

java convert bytes to string

byte[] bytes = "hello".getBytes();
String s = new String(bytes, StandardCharsets.UTF_8);
 
PREVIOUS NEXT
Tagged: #java #convert #bytes #string
ADD COMMENT
Topic
Name
5+8 =