| Author |
After which method java send real request to server?
|
Ivan Franko
Ranch Hand
Joined: May 30, 2011
Posts: 44
|
|
for example, I have next java code:
And I cant understand, in which moment (after call what method) java send real request to the server?
|
 |
Steve Luke
Bartender
Joined: Jan 28, 2003
Posts: 3090
|
|
|
The connection / request isn't made until the connect() method is called. The connect() method is called implicitly in the getInputStream() method. So in your call the HTTP request is made when you call the getInputStream() method.
|
Steve
|
 |
Ivan Franko
Ranch Hand
Joined: May 30, 2011
Posts: 44
|
|
|
Brilliant! Thank you!
|
 |
 |
|
|
subject: After which method java send real request to server?
|
|
|