in src/main/java/org/apache/sling/servlethelpers/ResponseBodySupport.java [97:103]
public String getOutputAsString(String charset) {
try {
return new String(getOutput(), defaultCharset(charset));
} catch (UnsupportedEncodingException ex) {
throw new RuntimeException("Unsupported encoding: " + defaultCharset(charset), ex);
}
}