[ 
https://issues.apache.org/jira/browse/HTTPCORE-349?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13766577#comment-13766577
 ] 

Hendy Irawan commented on HTTPCORE-349:
---------------------------------------

Thanks [~olegk]! I've been searching all of JIRA for this info (keywords: 
"AutoCloseable", "Closeable", "try-with-resources", nothing...)! So I have to 
use CloseableHttpClient !

Also the release notes only mentioned support for try-with-resources, but never 
linked to a page documenting it and neither do the change logs (4.3 alpha 1) 
mention anything related to try-with-resources.


                
> HttpResponse should implement Closeable (Java7 try-with-resources support)
> --------------------------------------------------------------------------
>
>                 Key: HTTPCORE-349
>                 URL: https://issues.apache.org/jira/browse/HTTPCORE-349
>             Project: HttpComponents HttpCore
>          Issue Type: Improvement
>          Components: HttpCore
>    Affects Versions: 4.3
>            Reporter: Hendy Irawan
>             Fix For: Future
>
>
> Currently we've got code like this:
> {code}
> final HttpResponse response = client.execute(postReq);
> try {
>       final StatusLine responseStatus = response.getStatusLine();
>       final String responseBody;
>       if (response.getEntity() != null)
>               responseBody = 
> IOUtils.toString(response.getEntity().getContent());
>       else
>               responseBody = null;
>       if (responseStatus.getStatusCode() >= 200 && 
> responseStatus.getStatusCode() < 300) {
>               log.info("Job returned {}: {}", responseStatus, responseBody);
>       } else
>               log.error("Job returned {}: {}", responseStatus, responseBody);
> } finally {
>       HttpClientUtils.closeQuietly(response);
> }
> {code}
> It would be great if this could be simplified to : (in Java 7)
> {code}
> try (final HttpResponse response = client.execute(postReq)) { 
>     ...
> }
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to