zoukankan      html  css  js  c++  java
  • Java Networking: InetAddress

    The InetAddress is Java's representation of an IP address. Instances of this class are used together with UDP DatagramSockets and normal Socket's and ServerSocket's.

    Creating an InetAddress Instance

    InetAddress has no public contructor, so you must obtain instances via a set of static methods.

    Here is how to get the InetAddress instance for a domain name:

    InetAddress address = InetAddress.getByName("jenkov.com");

    And here is how to get the InetAddress matching a String representation of an IP address:

    InetAddress address = InetAddress.getByName("78.46.84.171");

    And, here is how to obtain the IP address of the localhost (the computer the program is running on):

    InetAddress address = InetAddress.getLocalHost();

    Additional InetAddress Methods

    The InetAddress class has a lot of additional methods you can use. For instance, you can obtain the IP address as a byte array by calling getAddress() etc. To learn more about these methods, it is easier to read the JavaDoc for the InetAddress class though.

  • 相关阅读:
    docker搭建主从复制mysql
    mysql主从复制(mariadb)
    docker搭建mysql8.0
    docker安装mysql
    终端配置kxsw
    AJAX教程
    移动端常见布局
    css为什么需要精灵图
    元素的显示与隐藏
    css网页布局总结
  • 原文地址:https://www.cnblogs.com/ghgyj/p/4039355.html
Copyright © 2011-2022 走看看