Files
2022-06-06 15:24:44 +00:00

9 lines
192 B
Java

// "Replace with 'cs'" "true"
import java.nio.charset.*;
import java.io.UnsupportedEncodingException;
class X {
byte[] convert(String str, Charset cs) {
return str.getBytes(cs);
}
}