我有一个问题需要理解connect()
类中URLConnection
方法的含义。在下面的代码中,如果我使用connect()
方法,如果我不使用它,我会得到相同的结果。
为什么(或何时)需要使用它?
URL u = new URL("http://example.com");
HttpURLConnection conn = (HttpURLConnection) u.openConnection();
conn.connect();//with or without it I have the same result
InputStream in = conn.getInputStream();
int b;
while ((b = in.read()) != -1) {
System.out.write(b);
}
答案 0 :(得分:34)
答案 1 :(得分:33)
HttpURLConnection conn = (HttpURLConnection) u.openConnection();
只创建一个Object
connect()
调用 conn.getInputStream();
方法