All Categories
 
HttpURLConnection SetInstanceFollowRedirects() Example

HttpURLConnectionclass SetInstanceFollowRedirects() method example. This example shows you how to use SetInstanceFollowRedirects() method.This method Sets whether HTTP redirects (requests with response code 3xx) should be automatically followed by this HttpURLConnection instance.

 
HttpURLConnection SetFollowRedirects() Example

HttpURLConnectionclass SetFollowRedirects() method example. This example shows you how to use SetFollowRedirects() method.This method Sets whether HTTP redirects (requests with response code 3xx) should be automatically followed by this class.

 
HttpURLConnection SetFixedLengthStreamingMode() Example

HttpURLConnectionclass SetFixedLengthStreamingMode() method example. This example shows you how to use SetFixedLengthStreamingMode() method.This method is used to enable streaming of a HTTP request body without internal buffering, when the content length is known in advance.

 
HttpURLConnection SetChunkedStreamingMode() Example

HttpURLConnectionclass SetChunkedStreamingMode() method example. This example shows you how to use SetChunkedStreamingMode() method.This method is used to enable streaming of a HTTP request body without internal buffering, when the content length is not known in advance.

 
HttpURLConnection GetResponseMessage() Example

HttpURLConnectionclass GetResponseMessage() method example. This example shows you how to use GetResponseMessage() method.This method Gets the HTTP response message, if any, returned along with the response code from a server.

 
HttpURLConnection GetResponseCode() Example

HttpURLConnectionclass GetResponseCode() method example. This example shows you how to use GetResponseCode() method.This method Gets the status code from an HTTP response message.

 
HttpURLConnection GetRequestMethod() Example

HttpURLConnectionclass GetRequestMethod() method example. This example shows you how to use GetRequestMethod() method.This method Get the request method

 
HttpURLConnection GetPermission() Example

HttpURLConnectionclass GetPermission() method example. This example shows you how to use GetPermission() method.This method Returns a permission object representing the permission necessary to make the connection represented by this object.

 
HttpURLConnection GetInstanceFollowRedirects() Example

HttpURLConnectionclass GetInstanceFollowRedirects() method example. This example shows you how to use GetInstanceFollowRedirects() method.This method Returns the value of this HttpURLConnection's instanceFollowRedirects field.

 
HttpURLConnection GetHeaderFieldKey() Example

HttpURLConnectionclass GetHeaderFieldKey() method example. This example shows you how to use GetHeaderFieldKey() method.This method Returns the key for the nth header field

 
HttpURLConnection GetHeaderFieldDate() Example

HttpURLConnectionclass GetHeaderFieldDate() method example. This example shows you how to use GetHeaderFieldDate() method.This method Returns the value of the named field parsed as date

 
HttpURLConnection GetHeaderField() Example

HttpURLConnectionclass GetHeaderField() method example. This example shows you how to use GetHeaderField() method.This method Returns the value for the nth header field.

 
HttpURLConnection GetFollowRedirects() Example

HttpURLConnectionclass GetFollowRedirects() method example. This example shows you how to use GetFollowRedirects() method.This method Returns a boolean indicating whether or not HTTP redirects (3xx) should be automatically followed.

 
HttpURLConnection GetErrorStream() Example

HttpURLConnectionclass GetErrorStream() method example. This example shows you how to use GetErrorStream() method.This method Returns the error stream if the connection failed but the server sent useful data nonetheless.

 
NetworkInterface toString Example

NetworkInterface class toString example. public String toString() Returns a string representation of the object. In general, the toString method returns a string that "textually represents" this object.

 
NetworkInterface supportsMulticast Example

NetworkInterface class supportsMulticast example. public boolean supportsMulticast() throws SocketException Returns whether a network interface supports multicasting or not.

 
NetworkInterface isVirtual Example

NetworkInterface class isVirtual example. public boolean isVirtual() Returns whether this interface is a virtual interface (also called subinterface). Virtual interfaces are, on some systems, interfaces created as a child of a physical interface and given different settings (like address or MTU).

 
NetworkInterface isUp Example

NetworkInterface class isUp example. public boolean isUp() throws SocketException Returns whether a network interface is up and running.

 
NetworkInterface isPointToPoint Example

NetworkInterface class isPointToPoint example. public boolean isPointToPoint() throws SocketException Returns whether a network interface is a point to point interface. A typical point to point interface would be a PPP connection through a modem.

 
NetworkInterface isLoopback Example

NetworkInterface class isLoopback example. public boolean isLoopback() throws SocketException Returns whether a network interface is a loopback interface.

 
NetworkInterface hashCode Example

NetworkInterface class hashCode example. public int hashCode() Returns a hash code value for the object. This method is supported for the benefit of hashtables such as those provided by java.util.Hashtable.

 
NetworkInterface getSubInterfaces Example

NetworkInterface class getSubInterfaces example.public Enumeration getSubInterfaces() Get an Enumeration with all the subinterfaces (also known as virtual interfaces) attached to this network interface. For instance eth0:1 will be a subinterface to eth0.

 
NetworkInterface getParent Example

NetworkInterface class getParent example. public NetworkInterface getParent() Returns the parent NetworkInterface of this interface if this is a subinterface, or null if it is a physical (non virtual) interface or has no parent.

 
NetworkInterface getNetworkInterfaces Example

NetworkInterface class getNetworkInterfaces example. public static Enumeration getNetworkInterfaces() throws SocketException Returns all the interfaces on this machine. Returns null if no network interfaces could be found on this machine. NOTE: can use getNetworkInterfaces()+getInetAddresses() to obtain all IP addresses for this node

 
NetworkInterface getName Example

NetworkInterface class getName example. public String getName() Get the name of this network interface.

 
NetworkInterface getMTU Example

NetworkInterface class getMTU example. public int getMTU() throws SocketException Returns the Maximum Transmission Unit (MTU) of this interface.

 
NetworkInterface getInterfaceAddresses Example

NetworkInterface class getInterfaceAddresses example. public List getInterfaceAddresses() Get a List of all or a subset of the InterfaceAddresses of this network interface.

 
NetworkInterface getInetAddresses Example

NetworkInterface class getInetAddresses example. public Enumeration getInetAddresses() Convenience method to return an Enumeration with all or a subset of the InetAddresses bound to this network interface.

 
NetworkInterface getHardwareAddress Example

NetworkInterface class getHardwareAddress example. This example shows you how to use getHardwareAddress method.

 
NetworkInterface getDisplayName Example

NetworkInterface class getDisplayName example. public String getDisplayName() Get the display name of this network interface. A display name is a human readable String describing the network device.

 
 1    2    3    4    5    6    7   [8]    9    10    11    12    13    14    15    16    17    18    19    20    21    22    23    24    25    26    27    28    29    30    31    32    33    34    35    36    37    38    39    40    41    42    43    44    45    46    47    48    49    50    51    52    53    54    55    56    57    58    59    60    61    62    63    64    65    66    67    68    69    70    71    72    73    74    75    76    77    78    79    80    81    82    83    84    85    86    87    88    89    90    91    92    93    94    95    96    97    98    99    100    101    102    103    104    105    106    107    108    109    110    111    112    113    114    115    116    117    118    119    120    121    122    123    124    125    126    127    128    129    130    131    132    133    134    135    136    137    138    139    140    141    142    143    144    145    146    147    148    149    150    151    152    153    154    155    156    157    158    159    160    161    162    163    164    165    166    167    168    169    170    171    172    173    174    175    176    177    178    179    180    181    182    183    184    185    186    187    188    189    190    191    192    193    194    195    196    197    198    199    200    201    202    203    204    205    206    207    208    209    210    211    212    213    214    215    216    217    218    219    220    221    222    223    224    225    226    227    228    229    230    231    232    233    234    235    236    237    238    239    240    241    242    243    244    245    246    247    248    249    250    251    252    253    254    255    256    257    258    259    260    261    262    263    264    265    266    267    268    269    270    271    272    273    274    275    276    277    278    279    280    281    282    283    284    285    286    287    288    289    290    291    292    293    294    295    296    297    298    299    300    301    302    303    304    305    306    307    308    309    310    311    312    313    314    315    316    317    318    319    320    321    322    323    324    325    326    327    328    329    330    331    332    333    334    335    336    337    338    339    340    341    342    343    344    345    346    347    348    349    350    351    352    353    354    355    356    357    358    359    360    361    362    363    364    365    366    367    368    369    370    371    372    373    374    375    376    377    378    379    380    381    382    383    384    385    386    387    388    389    390    391    392    393    394    395    396    397    398    399    400    401    402    403    404    405    406    407    408    409    410    411    412    413    414    415    416    417    418    419    420    421    422    423    424    425    426    427    428    429    430    431    432    433    434    435    436    437    438    439    440  
 
 
 
 
 

HOME | COPYRIGHT | CONTACT US