public String getOutputAsString()

in src/main/java/org/apache/sling/servlethelpers/ResponseBodySupport.java [99:105]


    public String getOutputAsString(String charset) {
        try {
            return new String(getOutput(), defaultCharset(charset));
        } catch (UnsupportedEncodingException ex) {
            throw new RuntimeException("Unsupported encoding: " + defaultCharset(charset), ex);
        }
    }