Java Utililty Methods UTF String Create

List of utility methods to do UTF String Create

Description

The list of methods to do UTF String Create are organized into topic(s).

Method

StringnewUTF8String(byte[] bytes)
new UTF String
try {
    return new String(bytes, "UTF-8");
} catch (UnsupportedEncodingException e) {
    throw new RuntimeException(e);