private static String getHttpClientResult()

in shardingsphere-ui-backend/src/main/java/org/apache/shardingsphere/ui/util/HttpClientUtil.java [165:169]


    private static String getHttpClientResult(final CloseableHttpClient httpClient, final HttpRequestBase httpMethod) throws IOException {
        try (CloseableHttpResponse httpResponse = httpClient.execute(httpMethod)) {
            return isValidResponse(httpResponse) ? EntityUtils.toString(httpResponse.getEntity(), ENCODING) : "";
        }
    }