URLConnection.setDoInput

URLConnection.setDoInput

Class Overview | Class Members | This Package | All Packages

Syntax
public void setDoInput( boolean doinput )
Parameters
value
the new value.
Description
Sets the value of the doInput field for this URLConnection to the specified value.

A URL connection can be used for input and/or output. Set the DoInput flag to true if you intend to use the URL connection for input, false if not. The default is true unless DoOutput is explicitly set to true, in which case DoInput defaults to false.

See Also
doInput