All Categories
 
PasswordAuthentication GetUserName() Example

PasswordAuthenticationclass GetUserName() method example. This example shows you how to use GetUserName() method.This method Returns the user name.

 
PasswordAuthentication GetPassword() Example

PasswordAuthenticationclass GetPassword() method example. This example shows you how to use GetPassword() method.This method Returns the user password.

 
Inet4Address IsSiteLocalAddress() Example

Inet4Addressclass IsSiteLocalAddress() method example. This example shows you how to use IsSiteLocalAddress() method.This method returns a boolean if the InetAddress is a site local address

 
Inet4Address IsMulticastAddress() Example

Inet4Addressclass IsMulticastAddress() method example. This example shows you how to use IsMulticastAddress() method.This method returns a boolean if the InetAddress is an IP multicast address

 
Inet4Address IsMCSiteLocal() Example

Inet4Addressclass IsMCSiteLocal() method example. This example shows you how to use IsMCSiteLocal() method.This method returns a boolean if the address has a multicast address of site-local scope,

 
Inet4Address IsMCOrgLocal() Example

Inet4Addressclass IsMCOrgLocal() method example. This example shows you how to use IsMCOrgLocal() method.This method returns a boolean if the address has a multicast address of organization

 
Inet4Address IsMCNodeLocal() Example

Inet4Addressclass IsMCNodeLocal() method example. This example shows you how to use IsMCNodeLocal() method.This method returns a boolean if the address has a multicast address of node-local scope

 
Inet4Address IsMCLinkLocal() Example

Inet4Addressclass IsMCLinkLocal() method example. This example shows you how to use IsMCLinkLocal() method.This method returns a boolean if the address is a multicast address of link-local scope

 
Inet4Address IsMCGlobal() Example

Inet4Addressclass IsMCGlobal() method example. This example shows you how to use IsMCGlobal() method.This method returns a boolean if the address is a multicast address

 
Inet4Address IsLoopbackAddress() Example

Inet4Addressclass IsLoopbackAddress() method example. This example shows you how to use IsLoopbackAddress() method.This method returns a boolean indicating if the InetAddress is a loopback address

 
Inet4Address IsLinkLocalAddress() Example

Inet4Addressclass IsLinkLocalAddress() method example. This example shows you how to use IsLinkLocalAddress() method.This method returns a boolean if the InetAddress is a link local address

 
Inet4Address IsAnyLocalAddress() Example

Inet4Addressclass IsAnyLocalAddress() method example. This example shows you how to use IsAnyLocalAddress() method.This method returns a boolean if the Inetaddress is a wildcard address.

 
Inet4Address HashCode() Example

Inet4Addressclass HashCode() method example. This example shows you how to use HashCode() method.This method Returns a hashcode for IP address.

 
Inet4Address GetHostAddress() Example

Inet4Addressclass GetHostAddress() method example. This example shows you how to use GetHostAddress() method.This method returns the raw IP address in a string format.

 
Inet4Address GetAddress() Example

Inet4Addressclass GetAddress() method example. This example shows you how to use GetAddress() method.This method returns the raw IP address of object.

 
Inet4Address Equals() Example

Inet4Addressclass Equals() method example. This example shows you how to use Equals() method.This method Returns true if object is the same

 
IDN toUnicode Example

IDN class toUnicode example. public static String toUnicode(String input, int flag) Translates a string from ASCII Compatible Encoding (ACE) to Unicode, as defined by the ToUnicode operation of RFC 3490.

 
IDN toUnicode Example

IDN class toUnicode example. public static String toUnicode(String input) Translates a string from ASCII Compatible Encoding (ACE) to Unicode, as defined by the ToUnicode operation of RFC 3490.

 
IDN toASCII Example

IDN class toASCII example. public static String toASCII(String input, int flag) Translates a string from Unicode to ASCII Compatible Encoding (ACE), as defined by the ToASCII operation of RFC 3490.

 
IDN toASCII Example

IDN class toASCII example. public static String toASCII(String input) Translates a string from Unicode to ASCII Compatible Encoding (ACE), as defined by the ToASCII operation of RFC 3490.

 
InterfaceAddress toString Example

InterfaceAddress class toString example. public String toString() Converts this Interface address to a String. The string returned is of the form: InetAddress / prefix length [ broadcast address ].

 
InterfaceAddress hashCode Example

InterfaceAddress class hashCode example. public int hashCode() Returns a hashcode for this Interface address.

 
InterfaceAddress getNetworkPrefixLength Example

InterfaceAddress class getNetworkPrefixLength example. public short getNetworkPrefixLength() Returns the network prefix length for this address. This is also known as the subnet mask in the context of IPv4 addresses. Typical IPv4 values would be 8 (255.0.0.0), 16 (255.255.0.0) or 24 (255.255.255.0).Typical IPv6 values would be 128 (::1/128) or 10 (fe80::203:baff:fe27:1243/10)

 
InterfaceAddress getBroadcast Example

InterfaceAddress class getBroadcast example. public InetAddress getBroadcast() Returns an InetAddress for the brodcast address for this InterfaceAddress. Only IPv4 networks have broadcast address therefore, in the case of an IPv6 network, null will be returned.

 
InterfaceAddress getAddress Example

InterfaceAddress class getAddress example. public InetAddress getAddress() Returns an InetAddress for this address.

 
InterfaceAddress equals Example

InterfaceAddress class equals example. public boolean equals(Object obj) Compares this object against the specified object. The result is true if and only if the argument is not null and it represents the same interface address as this object.

 
URLConnection toString Example

URLConnection class toString example. public String toString() Returns a String representation of this URL connection.

 
URLConnection setDoOutput Example

URLConnection class setDoOutput example. public void setDoOutput(boolean dooutput) Sets the value of the doOutput field for this URLConnection to the specified value.

 
URLConnection setDoInput Example

URLConnection class setDoInput example. public void setDoInput(boolean doinput) Sets the value of the doInput field for this URLConnection to the specified value.

 
URLConnection getUseCaches Example

URLConnection class getUseCaches example. public boolean getUseCaches() Returns the value of this URLConnection's useCaches field.

 
 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