in src/main/java/com/aliyun/tea/Tea.java [131:137]
public static InputStream toReadable(String string) {
try {
return toReadable(string.getBytes("UTF-8"));
} catch (UnsupportedEncodingException e) {
throw new TeaException(e.getMessage(), e);
}
}