我是Java和HttpURLConnection的新手。我应该在断开连接之前关闭打开的IO流。如果我关闭流,我是否还需要断开连接?哪种是正确的实施方式?
try {
String uri = "http://localhost:8081/RESTEASY/saju/post/text";
URL url = new URL(uri);
connection =
(HttpURLConnection) url.openConnection();
connection.setRequestMethod("POST");
connection.setRequestProperty("Accept", "text/plain");
connection.setRequestProperty("Content-Type", "text/plain");
connection.setDoOutput(true);
OutputStream os = connection.getOutputStream();
//bla bla
System.out.println(connection.getResponseCode());
InputStream iStream = connection.getInputStream();
//bla bla
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}finally{
// os.close(); - IS THIS REQUIRED
// iStream.close(); - IS THIS REQUIRED
connection.disconnect();
}
}
答案 0 :(得分:8)
完成使用后,您应该在输入/输出/错误流上调用close()
。
断开连接更复杂。根据{{1}}的javadoc:
“表示在不久的将来不太可能向服务器发出其他请求。”
这是认识到HTTP 1.1规范具有“持久连接”功能,允许在对同一服务器的一系列请求中使用相同的TCP / IP连接。 (这是透明的。)当您调用disconnect()
时,可能会将其视为关闭连接的提示。
从资源和绩效的角度来看:
disconnect
,