what’s the cleanest way to create a kotlin.String ...
# announcements
t
what’s the cleanest way to create a kotlin.String from java.lang’s
public String(byte bytes[], int offset, int length, String charsetName)
? i have
val str = java.lang.String(bytes, 0, bytes.size, "UTF-8").toString()
...