Java code get IP address

Source: Internet
Author: User
Tags get ip

 Public classIptool { Public Static voidMain (string[] args) {Iptool Iptool=NewIptool ();    System.out.println (Iptool.getlocalip ()); }    /*** * To determine whether the previous operation is Windows. *      * @returntrue---is the Windows operation system*/    Private  BooleanIswindowsos () {BooleanIswindowsos =false; String Osname= System.getproperty ("Os.name"); if(Osname.tolowercase (). IndexOf ("Windows") >-1) {Iswindowsos=true; }        returnIswindowsos; }    /*** * Access to the IP address of the machine, and the automatic division of Windows or Linux operating system * * *@returnString*/     Publicstring Getlocalip () {string SIP= ""; InetAddress IP=NULL; Try {            //if the Windows operating system            if(Iswindowsos ()) {IP=Inetaddress.getlocalhost (); }            //if the Linux operating system            Else {                BooleanBfindip =false; Enumeration<NetworkInterface> netinterfaces = (enumeration<networkinterface>) NetworkInterface. getnetworkinterfaces ();  while(Netinterfaces.hasmoreelements ()) {if(BFINDIP) { Break; } networkinterface ni=(NetworkInterface) netinterfaces. Nextelement (); //----------specific situation, you can consider using Ni.getname to judge//all over the IPenumeration<inetaddress> ips =ni.getinetaddresses ();  while(Ips.hasmoreelements ()) {IP=(inetaddress) ips.nextelement (); if(Ip.issitelocaladdress () &&!ip.isloopbackaddress ()//127. The Lookback address is the beginning.&& ip.gethostaddress (). IndexOf (":") = =-1) {Bfindip=true;  Break; }                    }                }            }        } Catch(Exception e) {e.printstacktrace (); }        if(NULL!=IP) {SIP=ip.gethostaddress (); }        returnSIP; }}

Java code get IP address

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.