J'ai vu de nombreux exemples différents d'utilisation de HttpURLConnection + InputStream, et de leur fermeture (ou non) après utilisation. Voici ce que j'ai trouvé pour m'assurer que tout est fermé après avoir terminé, qu'il y ait une erreur ou non. Est-ce que c'est valable ?
HttpURLConnection conn = null;
InputStream is = null;
try {
URL url = new URL("http://example.com");
// (set connection and read timeouts on the connection)
conn = (HttpURLConnection)url.openConnection();
is = new BufferedInputStream(conn.getInputStream());
doSomethingWithInputStream(is);
} catch (Exception ex) {
} finally {
if (is != null) {
try {
is.close();
} catch (IOException e) {
}
}
if (conn != null) {
conn.disconnect();
}
}
Merci