Java Networking: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 9: | Line 9: | ||
{{External|https://docs.oracle.com/javase/8/docs/api/java/net/InetAddress.html}} | {{External|https://docs.oracle.com/javase/8/docs/api/java/net/InetAddress.html}} | ||
This class represents an Internet Protocol (IP) address. Its subclasses represent either 32 bit IPv4 addresses (Inet4Address) or an 128 bit IPv6 addresses (Inet6Address) | This class represents an Internet Protocol (IP) address. Its subclasses represent either 32 bit IPv4 addresses ([[#Inet4Address|Inet4Address]]) or an 128 bit IPv6 addresses ([[#Inet6Address|Inet6Address]]) | ||
===Inet4Address=== | ===Inet4Address=== | ||
===Inet6Address=== | ===Inet6Address=== |
Revision as of 20:04, 15 March 2017
Internal
Concepts
InetAddress
This class represents an Internet Protocol (IP) address. Its subclasses represent either 32 bit IPv4 addresses (Inet4Address) or an 128 bit IPv6 addresses (Inet6Address)