जावा का उपयोग करके वर्तमान मशीन का आईपी पता प्राप्त करना


291

मैं एक ऐसी प्रणाली विकसित करने की कोशिश कर रहा हूं, जहां अलग-अलग नोड्स हैं जो अलग-अलग सिस्टम पर या एक ही सिस्टम पर अलग-अलग पोर्ट पर चलते हैं।

अब सभी नोड्स एक टारगेट आईपी के साथ सॉकेट बनाते हैं जो कि बूटस्ट्रैपिंग नोड के रूप में ज्ञात विशेष नोड के आईपी के रूप में होता है। नोड्स तब अपना स्वयं का निर्माण करते हैं ServerSocketऔर कनेक्शन के लिए सुनना शुरू करते हैं।

बूटस्ट्रैपिंग नोड नोड्स की एक सूची को बनाए रखता है और उन्हें क्वेर होने पर लौटाता है।

अब मुझे क्या चाहिए नोड को अपने आईपी को बूटस्ट्रैपिंग नोड में पंजीकृत करना होगा। मैंने cli.getInetAddress()एक बार क्लाइंट को ServerSocketबूटस्ट्रैपिंग नोड से कनेक्ट करने की कोशिश की, लेकिन वह काम नहीं किया।

  1. यदि उपलब्ध हो तो मुझे इसके पीपीपी आईपी को पंजीकृत करने के लिए ग्राहक की आवश्यकता है;
  2. अन्यथा यदि उपलब्ध हो तो LAN IP;
  3. अन्यथा इसे अपना कंप्यूटर मानकर 127.0.0.1 रजिस्टर करना होगा।

कोड का उपयोग करना:

System.out.println(Inet4Address.getLocalHost().getHostAddress());

या

System.out.println(InetAddress.getLocalHost().getHostAddress());

मेरा पीपीपी कनेक्शन आईपी पता है: 117.204.44.192 लेकिन उपरोक्त मुझे 192.168.1.2 देता है

संपादित करें

मैं निम्नलिखित कोड का उपयोग कर रहा हूं:

Enumeration e = NetworkInterface.getNetworkInterfaces();
while(e.hasMoreElements())
{
    NetworkInterface n = (NetworkInterface) e.nextElement();
    Enumeration ee = n.getInetAddresses();
    while (ee.hasMoreElements())
    {
        InetAddress i = (InetAddress) ee.nextElement();
        System.out.println(i.getHostAddress());
    }
}

मैं सभी आईपी पते को सभी NetworkInterfaces से संबद्ध करने में सक्षम हूं , लेकिन मैं उन्हें कैसे भेद करूं? यह आउटपुट मुझे मिल रहा है:

127.0.0.1
192.168.1.2
192.168.56.1
117.204.44.19

Inet4Address.getLocalHost () सही काम करना चाहिए?
भारत

3
लूप के अंदर अगर मैं n.isPointToPoint () जोड़ूंगा तो वह काम करेगा ?? मेरा विचार "127.0.0.1" लौटने का है यदि कोई प्वाइंट टू पॉइंट नेटवर्क नहीं मिला है। क्या वह काम करेगा??
ससिधर

3
@ सासीधर: कृपया अपना वास्तविक आईपी पता न भेजें। निजी आईपी के लिए 117.xxx.xxx.xxx लिखें, यह ठीक है।
nIcE cOw

@ GagandeepBali सलाह के लिए धन्यवाद, लेकिन मेरा आईपी एक गतिशील आईपी है और मुझे हर बार एक नया आईपी मिलता है और मैं अपना इंटरनेट कनेक्ट करता हूं। तो मुझे कोई समस्या नहीं होनी चाहिए, मुझे लगता है।
17

जवाबों:


116
import java.net.DatagramSocket;
import java.net.InetAddress;

try(final DatagramSocket socket = new DatagramSocket()){
  socket.connect(InetAddress.getByName("8.8.8.8"), 10002);
  ip = socket.getLocalAddress().getHostAddress();
}

कई नेटवर्क इंटरफेस होने पर यह तरीका अच्छा काम करता है। यह हमेशा पसंदीदा आउटबाउंड आईपी लौटाता है। गंतव्य 8.8.8.8को पुनः प्राप्त करने की आवश्यकता नहीं है।

ConnectUDP सॉकेट पर निम्न प्रभाव पड़ता है: यह Send / Recv के लिए गंतव्य सेट करता है, अन्य पतों से सभी पैकेटों को अलग करता है, और - जो हम उपयोग करते हैं - सॉकेट को "कनेक्टेड" स्थिति में स्थानांतरित करता है, उसके उपयुक्त क्षेत्रों को सेट करता है। इसमें सिस्टम के रूटिंग टेबल के अनुसार गंतव्य के मार्ग के अस्तित्व की जांच करना और उसके अनुसार स्थानीय समापन बिंदु सेट करना शामिल है। अंतिम भाग को आधिकारिक रूप से अप्रत्यक्ष रूप से लगता है, लेकिन यह बर्कले सॉकेट्स एपीआई (यूडीपी "कनेक्टेड" राज्य का एक साइड इफेक्ट) का एक अभिन्न लक्षण जैसा दिखता है, जो संस्करणों और वितरणों में विंडोज और लिनक्स दोनों में मज़बूती से काम करता है।

इसलिए, यह विधि स्थानीय पते को देगी जिसका उपयोग निर्दिष्ट दूरस्थ होस्ट से कनेक्ट करने के लिए किया जाएगा। कोई वास्तविक कनेक्शन स्थापित नहीं है, इसलिए निर्दिष्ट दूरस्थ आईपी पहुंच से बाहर हो सकता है।

संपादित करें:

जैसा @macomgil कहता है, MacOS के लिए आप ऐसा कर सकते हैं:

Socket socket = new Socket();
socket.connect(new InetSocketAddress("google.com", 80));
System.out.println(socket.getLocalAddress());

7
इसने मेरे लिए लिनक्स पर काम किया लेकिन मुझे ओएक्सएक्स पर मिला: "0.0.0.0"
रादु टोडर

@ जीफ, जवाब अपडेट है। अगर यह OsX पर काम नहीं करता है, तो आपको दूसरा रास्ता चुनने की जरूरत है।
मिस्टर.वांग नेक्स्ट डोर

1
प्रतिभाशाली! FYI करें, जब बंद आंतरिक नेटवर्क के साथ काम कर रहे हों, तो बस 8.8.8.8 को बदलें जिससे हर मेजबान पहुँच सके
Murphy Ng

विंडोज पर काम करता है; क्या हम पुष्टि कर सकते हैं कि OSX अभी भी एक समस्या है?
त्रयी

4
@ मैं अभी भी OSX पर 0.0.0.0
पीटर टुटरवई

273

यह सबसे सामान्य मामले में थोड़ा मुश्किल हो सकता है।

इसके चेहरे पर, InetAddress.getLocalHost() आपको इस होस्ट का आईपी पता देना चाहिए। समस्या यह है कि एक मेजबान में बहुत सारे नेटवर्क इंटरफेस हो सकते हैं, और एक इंटरफ़ेस एक से अधिक आईपी पते के लिए बाध्य हो सकता है। और शीर्ष पर, आपके मशीन या आपके लैन के बाहर सभी आईपी पते उपलब्ध नहीं होंगे। उदाहरण के लिए, वे वर्चुअल नेटवर्क डिवाइस, निजी नेटवर्क आईपी पते और इतने पर के लिए आईपी पते हो सकते हैं।

इसका मतलब यह है कि आईपी पते द्वारा लौटाया गया है InetAddress.getLocalHost() उपयोग करने के लिए सही नहीं हो सकता है।

आप इससे कैसे निपट सकते हैं?

  • एक दृष्टिकोण NetworkInterface.getNetworkInterfaces()मेजबान पर सभी ज्ञात नेटवर्क इंटरफेस को प्राप्त करने के लिए उपयोग करना है, और फिर प्रत्येक एनआई के पते पर पुनरावृति करना है।
  • एक और तरीका है (किसी तरह) मेजबान के लिए बाहरी रूप से विज्ञापित FQDN प्राप्त करना, और InetAddress.getByName()प्राथमिक IP पता देखने के लिए उपयोग करना। (लेकिन आप इसे कैसे प्राप्त करते हैं, और आप DNS-आधारित लोड बैलेंसर के साथ कैसे व्यवहार करते हैं?)
  • पूर्व की एक भिन्नता को पसंदीदा फ़ाइल या कमांड लाइन पैरामीटर से पसंदीदा FQDN प्राप्त करना है।
  • एक अन्य भिन्नता एक कॉन्फ़िगर फ़ाइल या कमांड लाइन पैरामीटर से पसंदीदा आईपी पता प्राप्त करना है।

सारांश में, InetAddress.getLocalHost()आम तौर पर काम करेगा, लेकिन आपको उन मामलों के लिए एक वैकल्पिक विधि प्रदान करने की आवश्यकता हो सकती है जहां आपका कोड "जटिल" नेटवर्किंग वाले वातावरण में चलाया जाता है।


मैं सभी नेटवर्क इंटरफेस से जुड़े सभी आईपी पते प्राप्त करने में सक्षम हूं, लेकिन मैं उन्हें कैसे भेद करूं?

  • 127.xxx.xxx.xxx का कोई भी पता एक "लूपबैक" पता है। यह केवल "इस" होस्ट को दिखाई देता है।
  • सीमा 192.168.xxx.xxx में कोई भी पता एक निजी (उर्फ साइट स्थानीय) आईपी पता है। ये एक संगठन के भीतर उपयोग के लिए आरक्षित हैं। यही बात 10.xxx.xxx.xxx पतों और 172.16.xxx.xxx पर 172.31.xxx.xxx के माध्यम से लागू होती है।
  • 169.254.xxx.xxx श्रेणी के पते स्थानीय आईपी पते हैं। ये एकल नेटवर्क खंड पर उपयोग के लिए आरक्षित हैं।
  • 229.xxx.xxx.xxx.xxx के माध्यम से 224.xxx.xxx.xxx के पते बहुभाषी पते हैं।
  • पता 255.255.255.255 प्रसारण पता है।
  • और कुछ भी एक मान्य सार्वजनिक बिंदु से बिंदु IPv4 पता होना चाहिए

वास्तव में, InetAddress API लूपबैक, लिंक लोकल, साइट लोकल, मल्टिकास्ट और ब्रॉडकास्ट एड्रेस के परीक्षण के लिए तरीके प्रदान करता है। आप इनका उपयोग यह पता लगाने के लिए कर सकते हैं कि आपको कौन से आईपी पते वापस मिलेंगे जो सबसे उपयुक्त हैं।


3
यदि कोई व्यक्ति उत्सुक है, तो getLocalHost अनिवार्य रूप से सर्वर के होस्टनाम पर DNS लुकअप करता है। यदि इसे उस लुकअप से एक आईपी एड्रेस मिलता है तो यह इंटरफेस के माध्यम से यह देखने के लिए उपलब्ध है कि उस आईपी एड्रेस में कौन सा इंटरफेस है और यह उस इंटरफेस को वापस करता है। इसका मतलब यह है कि getLocalHost एक "सर्वर" वातावरण में काम करेगा जहां आउटगोइंग आईपी वह है जो सर्वर के होस्टनाम में मैप करता है।
पेस

1
उबंटू 14.04 पर यह एपी 127.0.1.1 लौटाता है, भले ही ifconfig केवल दो इंटरफेस की रिपोर्ट करता है, एक मैं चाहता हूं (सार्वजनिक रूप से सुलभ आईपी पता), और लूपबैक (127.0.0.1)। अजीब है कि यह एक अलग लूपबैक उपनाम देता है।
ctpenrose

मुझे लगता है कि यदि आप use getLocalHost().getHostAddress()कुछ प्रकाशित करने के लिए जोड़ते हैं, तो आप 0.0.0.0नेटवर्क पर एक नोटेर कंप्यूटर से देख सकते हैं । यह यहाँ बताया गया है कि यह मेरे साथ तब हुआ जब मैं दो कंप्यूटरों में गज़ेबो का उपयोग कर रहा था
पीटर मितरानो

57

यहाँ पोस्टिंग https://issues.apache.org/jira/browse/JCS-40 (InetAddress.getLocalHost) (लिनक्स सिस्टम पर अस्पष्ट) से IP अस्पष्टता वर्कअराउंड कोड का परीक्षण किया गया है :

/**
 * Returns an <code>InetAddress</code> object encapsulating what is most likely the machine's LAN IP address.
 * <p/>
 * This method is intended for use as a replacement of JDK method <code>InetAddress.getLocalHost</code>, because
 * that method is ambiguous on Linux systems. Linux systems enumerate the loopback network interface the same
 * way as regular LAN network interfaces, but the JDK <code>InetAddress.getLocalHost</code> method does not
 * specify the algorithm used to select the address returned under such circumstances, and will often return the
 * loopback address, which is not valid for network communication. Details
 * <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4665037">here</a>.
 * <p/>
 * This method will scan all IP addresses on all network interfaces on the host machine to determine the IP address
 * most likely to be the machine's LAN address. If the machine has multiple IP addresses, this method will prefer
 * a site-local IP address (e.g. 192.168.x.x or 10.10.x.x, usually IPv4) if the machine has one (and will return the
 * first site-local address if the machine has more than one), but if the machine does not hold a site-local
 * address, this method will return simply the first non-loopback address found (IPv4 or IPv6).
 * <p/>
 * If this method cannot find a non-loopback address using this selection algorithm, it will fall back to
 * calling and returning the result of JDK method <code>InetAddress.getLocalHost</code>.
 * <p/>
 *
 * @throws UnknownHostException If the LAN address of the machine cannot be found.
 */
private static InetAddress getLocalHostLANAddress() throws UnknownHostException {
    try {
        InetAddress candidateAddress = null;
        // Iterate all NICs (network interface cards)...
        for (Enumeration ifaces = NetworkInterface.getNetworkInterfaces(); ifaces.hasMoreElements();) {
            NetworkInterface iface = (NetworkInterface) ifaces.nextElement();
            // Iterate all IP addresses assigned to each card...
            for (Enumeration inetAddrs = iface.getInetAddresses(); inetAddrs.hasMoreElements();) {
                InetAddress inetAddr = (InetAddress) inetAddrs.nextElement();
                if (!inetAddr.isLoopbackAddress()) {

                    if (inetAddr.isSiteLocalAddress()) {
                        // Found non-loopback site-local address. Return it immediately...
                        return inetAddr;
                    }
                    else if (candidateAddress == null) {
                        // Found non-loopback address, but not necessarily site-local.
                        // Store it as a candidate to be returned if site-local address is not subsequently found...
                        candidateAddress = inetAddr;
                        // Note that we don't repeatedly assign non-loopback non-site-local addresses as candidates,
                        // only the first. For subsequent iterations, candidate will be non-null.
                    }
                }
            }
        }
        if (candidateAddress != null) {
            // We did not find a site-local address, but we found some other non-loopback address.
            // Server might have a non-site-local address assigned to its NIC (or it might be running
            // IPv6 which deprecates the "site-local" concept).
            // Return this non-loopback candidate address...
            return candidateAddress;
        }
        // At this point, we did not find a non-loopback address.
        // Fall back to returning whatever InetAddress.getLocalHost() returns...
        InetAddress jdkSuppliedAddress = InetAddress.getLocalHost();
        if (jdkSuppliedAddress == null) {
            throw new UnknownHostException("The JDK InetAddress.getLocalHost() method unexpectedly returned null.");
        }
        return jdkSuppliedAddress;
    }
    catch (Exception e) {
        UnknownHostException unknownHostException = new UnknownHostException("Failed to determine LAN address: " + e);
        unknownHostException.initCause(e);
        throw unknownHostException;
    }
}

6
यह ध्यान दिया जाना चाहिए कि यह अभी भी मामले की मेजबानी में अस्पष्टता को हल नहीं करता है मेजबान में कई समान समान कार्य इंटरफेस हैं।
वडज़िम

1
bellow का उत्तर बेहतर है - stackoverflow.com/questions/9481865/… को स्थानीय IP पता मिलता है जिसे डिफ़ॉल्ट गेटवे के लिए src के रूप में उपयोग किया जाता है
Radu Toader

फ्रंट स्लैश के साथ आईपी एड्रेस क्यों जोड़ा जाता है ..? जैसे /10.39.0.17 .. ?, क्या हमेशा इस तरह से छंटनी की जानी चाहिए ..?
कानागवेलु सुगुमार

51

आप इस उद्देश्य के लिए जावा के InetAddress वर्ग का उपयोग कर सकते हैं ।

InetAddress IP=InetAddress.getLocalHost();
System.out.println("IP of my system is := "+IP.getHostAddress());

मेरे सिस्टम के लिए आउटपुट = IP of my system is := 10.100.98.228

getHostAddress () रिटर्न

पाठ प्रस्तुति में IP पता स्ट्रिंग लौटाता है।

या आप भी कर सकते हैं

InetAddress IP=InetAddress.getLocalHost();
System.out.println(IP.toString());

आउटपुट = IP of my system is := RanRag-PC/10.100.98.228


9
ध्यान दें कि 10.xxx एक निजी पता है, जो दर्शाता है कि आपका सिस्टम NAT नेटवर्क पर है। बाहरी दुनिया से संपर्क करने पर यह एक अलग पते के रूप में दिखाई देगा। यदि आपको वास्तव में बाहरी आईपी पते की आवश्यकता है, तो आपको कई साइटों में से एक से संपर्क करना होगा, जो आपके द्वारा आ रहे आईपी पते से वापस मिल जाएगा। यह आपके लिए उपयोगी हो सकता है या नहीं। आपका सिस्टम लगभग निश्चित रूप से किसी भी घटना में बाहर से आने योग्य नहीं होगा।
एडवर्ड फॉक

19

जब आप अपने "स्थानीय" पते की तलाश कर रहे हैं, तो आपको ध्यान देना चाहिए कि प्रत्येक मशीन में केवल एक नेटवर्क इंटरफ़ेस नहीं है, और प्रत्येक इंटरफ़ेस का अपना स्थानीय पता हो सकता है। जिसका अर्थ है कि आपकी मशीन हमेशा कई "स्थानीय" पतों की मालिक है।

अलग-अलग "स्थानीय" पते का उपयोग करने के लिए स्वचालित रूप से चुना जाएगा जब आप अलग-अलग समापन बिंदुओं से जुड़ रहे हों। उदाहरण के लिए, जब आप कनेक्ट करते हैं google.com, तो आप "बाहरी" स्थानीय पते का उपयोग कर रहे होते हैं; लेकिन जब आप अपने से जुड़ते हैं localhost, तो आपका स्थानीय पता हमेशा localhostस्वयं ही होता है, क्योंकि लोकलहोस्ट सिर्फ लूपबैक होता है।

नीचे दिखाया जा रहा है कि जब आप संपर्क कर रहे हों तो अपना स्थानीय पता कैसे लगाएं google.com:

Socket socket = new Socket();
socket.connect(new InetSocketAddress("google.com", 80));
System.out.println(socket.getLocalAddress());

बहुत बढ़िया !! - इतना आसान :)
smilyface

4
अंत में socket.close () जोड़ें :)
MC

11

Scala में उदाहरण (sbt फ़ाइल में उपयोगी):

  import collection.JavaConverters._
  import java.net._

  def getIpAddress: String = {

    val enumeration = NetworkInterface.getNetworkInterfaces.asScala.toSeq

    val ipAddresses = enumeration.flatMap(p =>
      p.getInetAddresses.asScala.toSeq
    )

    val address = ipAddresses.find { address =>
      val host = address.getHostAddress
      host.contains(".") && !address.isLoopbackAddress
    }.getOrElse(InetAddress.getLocalHost)

    address.getHostAddress
  }

10

EDIT 1: अपडेटेड कोड, पिछले लिंक के बाद से मौजूद नहीं है

import java.io.*;
import java.net.*;

public class GetMyIP {
    public static void main(String[] args) {
        URL url = null;
        BufferedReader in = null;
        String ipAddress = "";
        try {
            url = new URL("http://bot.whatismyipaddress.com");
            in = new BufferedReader(new InputStreamReader(url.openStream()));
            ipAddress = in.readLine().trim();
            /* IF not connected to internet, then
             * the above code will return one empty
             * String, we can check it's length and
             * if length is not greater than zero, 
             * then we can go for LAN IP or Local IP
             * or PRIVATE IP
             */
            if (!(ipAddress.length() > 0)) {
                try {
                    InetAddress ip = InetAddress.getLocalHost();
                    System.out.println((ip.getHostAddress()).trim());
                    ipAddress = (ip.getHostAddress()).trim();
                } catch(Exception exp) {
                    ipAddress = "ERROR";
                }
            }
        } catch (Exception ex) {
            // This try will give the Private IP of the Host.
            try {
                InetAddress ip = InetAddress.getLocalHost();
                System.out.println((ip.getHostAddress()).trim());
                ipAddress = (ip.getHostAddress()).trim();
            } catch(Exception exp) {
                ipAddress = "ERROR";
            }
            //ex.printStackTrace();
        }
        System.out.println("IP Address: " + ipAddress);
    }
}

वास्तविक संस्करण: इसने काम करना बंद कर दिया

उम्मीद है कि यह स्निपेट आपको इसे हासिल करने में मदद कर सकता है:

// Method to get the IP Address of the Host.
private String getIP()
{
    // This try will give the Public IP Address of the Host.
    try
    {
        URL url = new URL("http://automation.whatismyip.com/n09230945.asp");
        BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
        String ipAddress = new String();
        ipAddress = (in.readLine()).trim();
        /* IF not connected to internet, then
         * the above code will return one empty
         * String, we can check it's length and
         * if length is not greater than zero, 
         * then we can go for LAN IP or Local IP
         * or PRIVATE IP
         */
        if (!(ipAddress.length() > 0))
        {
            try
            {
                InetAddress ip = InetAddress.getLocalHost();
                System.out.println((ip.getHostAddress()).trim());
                return ((ip.getHostAddress()).trim());
            }
            catch(Exception ex)
            {
                return "ERROR";
            }
        }
        System.out.println("IP Address is : " + ipAddress);

        return (ipAddress);
    }
    catch(Exception e)
    {
        // This try will give the Private IP of the Host.
        try
        {
            InetAddress ip = InetAddress.getLocalHost();
            System.out.println((ip.getHostAddress()).trim());
            return ((ip.getHostAddress()).trim());
        }
        catch(Exception ex)
        {
            return "ERROR";
        }
    }
}

2
समाधान काम करेगा, उम्मीद है कि अगर मैं हमेशा इंटरनेट से जुड़ा हुआ हूं, लेकिन मुझे इसकी गारंटी नहीं है। इसके अलावा, जब सिस्टम इंटरनेट से कनेक्ट नहीं होता है और तब मुझे सिस्टम के LAN आईपी पते को वापस करने की आवश्यकता होती है यदि कोई हो, अन्यथा लोकलहोस्ट। इसलिए मेरे लिए संभव विकल्प नहीं है। कोई अन्य तरीका??
ससिधर

@ ससिधर: जब आप इंटरनेट से जुड़े होते हैं, तभी आप अपना सार्वजनिक आईपी रखते हैं, मुझे लगता है, यदि आप कनेक्ट नहीं हैं, तो यह विधि आपको, आपके स्थानीय आईपी या लैन आईपी, और आपके द्वारा निर्दिष्ट अंतिम स्थिति के लिए देगी। आप "127.0.0.1" वापस कर सकते हैं, बजाय त्रुटि वापस करने के।
nIcE cOw

1
मुझे आपका दृष्टिकोण पसंद है लेकिन यह लिंक अब काम नहीं करता है !! क्या मैं उस बाहरी लिंक के बजाय काम करने के लिए अपने सिस्टम पर एक नियंत्रक लगा सकता हूं और इसलिए अधिक विश्वसनीय हो सकता हूं ???
अजराफती

1
@Bludream: थैंक्यू इतना, मेरी जानकारी में यह लाने के लिए, कि लिंक अब काम नहीं कर रहा है। मैंने कुछ नए इनपुट के साथ पोस्ट को अपडेट किया है। उम्मीद है कि यह आपके उपयोगकर्ता के लिए काम करता है। आपके प्रश्न के बारे में, मैं वास्तव में नहीं जानता कि इसे कैसे काम करने के लिए अपने सिस्टम पर एक नियंत्रक सेटअप करना है। इसलिए मैं इस विषय, मेरी बीएडी पर जानकारी नहीं दे पाऊंगा। धन्यवाद फिर से और
KEEP SMILING

1
जितना यह एक शांत समाधान है, यह बेहद अविश्वसनीय है। यदि आप मुख्य थ्रेड को ब्लॉक करने देते हैं (कहते हैं) और जो भी कारण whatismyip.comकुछ समय के लिए नीचे था, तो आपका ऐप भी डाउन हो जाएगा :(!) या यह कचरा डेटा लौटाएगा और अप्रत्याशित व्यवहार का कारण बनेगा। सबसे आईपी पता लगाने योग्य है whatismyip.com, जरूरी नहीं कि जिस मशीन का आप उपयोग कर रहे हैं उसका आईपी पता ही हो।
Decoded

6

सबसे पहले कक्षा आयात करें

import java.net.InetAddress;

क्लास में

  InetAddress iAddress = InetAddress.getLocalHost();
  String currentIp = iAddress.getHostAddress();
  System.out.println("Current IP address : " +currentIp); //gives only host address

2
यह केवल पहला आईपी पता देता है भले ही यह उपयोग में न हो!
याह्या

6

आप java.net.InetAddressएपीआई का उपयोग कर सकते हैं । इसे इस्तेमाल करे :

InetAddress.getLocalHost().getHostAddress();

5
यह बस 127.0.0.1
HCarrasko

5
private static InetAddress getLocalAddress(){
        try {
            Enumeration<NetworkInterface> b = NetworkInterface.getNetworkInterfaces();
            while( b.hasMoreElements()){
                for ( InterfaceAddress f : b.nextElement().getInterfaceAddresses())
                    if ( f.getAddress().isSiteLocalAddress())
                        return f.getAddress();
            }
        } catch (SocketException e) {
            e.printStackTrace();
        }
        return null;
    }

1
कृपया, अपने कोड के बारे में कुछ स्पष्टीकरण जोड़ें।
HCarrasko

4

ऊपर दिए गए ACCEPTED उत्तर का यह एक कार्यशील उदाहरण है! यह NetIdentity वर्ग दोनों आंतरिक होस्ट आईपी, साथ ही स्थानीय लूपबैक को संग्रहीत करेगा। यदि आप DNS आधारित सर्वर पर हैं, तो जैसा कि ऊपर उल्लेख किया गया है, आपको कुछ और चेक जोड़ने की आवश्यकता हो सकती है, या संभव है कि कॉन्फ़िगरेशन फ़ाइल रूट पर जाएं।

import java.net.InetAddress;
import java.net.NetworkInterface;
import java.net.SocketException;
import java.net.UnknownHostException;
import java.util.Enumeration;

/**
 * Class that allows a device to identify itself on the INTRANET.
 * 
 * @author Decoded4620 2016
 */
public class NetIdentity {

    private String loopbackHost = "";
    private String host = "";

    private String loopbackIp = "";
    private String ip = "";
    public NetIdentity(){

        try{
            Enumeration<NetworkInterface> interfaces = NetworkInterface.getNetworkInterfaces();

            while(interfaces.hasMoreElements()){
                NetworkInterface i = interfaces.nextElement();
                if(i != null){
                    Enumeration<InetAddress> addresses = i.getInetAddresses();
                    System.out.println(i.getDisplayName());
                    while(addresses.hasMoreElements()){
                        InetAddress address = addresses.nextElement();
                        String hostAddr = address.getHostAddress();

                        // local loopback
                        if(hostAddr.indexOf("127.") == 0 ){
                            this.loopbackIp = address.getHostAddress();
                            this.loopbackHost = address.getHostName();
                        }

                        // internal ip addresses (behind this router)
                        if( hostAddr.indexOf("192.168") == 0 || 
                                hostAddr.indexOf("10.") == 0 || 
                                hostAddr.indexOf("172.16") == 0 ){
                            this.host = address.getHostName();
                            this.ip = address.getHostAddress();
                        }


                        System.out.println("\t\t-" + address.getHostName() + ":" + address.getHostAddress() + " - "+ address.getAddress());
                    }
                }
            }
        }
        catch(SocketException e){

        }
        try{
            InetAddress loopbackIpAddress = InetAddress.getLocalHost();
            this.loopbackIp = loopbackIpAddress.getHostName();
            System.out.println("LOCALHOST: " + loopbackIp);
        }
        catch(UnknownHostException e){
            System.err.println("ERR: " + e.toString());
        }
    }

    public String getLoopbackHost(){
        return loopbackHost;
    }

    public String getHost(){
        return host;
    }
    public String getIp(){
        return ip;
    }
    public String getLoopbackIp(){
        return loopbackIp;
    }
}

जब मैं इस कोड को चलाता हूं तो मुझे वास्तव में इस तरह प्रिंट आउट मिलता है:

    Software Loopback Interface 1
        -127.0.0.1:127.0.0.1 - [B@19e1023e
        -0:0:0:0:0:0:0:1:0:0:0:0:0:0:0:1 - [B@7cef4e59
Broadcom 802.11ac Network Adapter
        -VIKING.yourisp.com:192.168.1.142 - [B@64b8f8f4
        -fe80:0:0:0:81fa:31d:21c9:85cd%wlan0:fe80:0:0:0:81fa:31d:21c9:85cd%wlan0 - [B@2db0f6b2
Microsoft Kernel Debug Network Adapter
Intel Edison USB RNDIS Device
Driver for user-mode network applications
Cisco Systems VPN Adapter for 64-bit Windows
VirtualBox Host-Only Ethernet Adapter
        -VIKING:192.168.56.1 - [B@3cd1f1c8
        -VIKING:fe80:0:0:0:d599:3cf0:5462:cb7%eth4 - [B@3a4afd8d
LogMeIn Hamachi Virtual Ethernet Adapter
        -VIKING:25.113.118.39 - [B@1996cd68
        -VIKING:2620:9b:0:0:0:0:1971:7627 - [B@3339ad8e
        -VIKING:fe80:0:0:0:51bf:994d:4656:8486%eth5 - [B@555590
Bluetooth Device (Personal Area Network)
        -fe80:0:0:0:4c56:8009:2bca:e16b%eth6:fe80:0:0:0:4c56:8009:2bca:e16b%eth6 - [B@3c679bde
Bluetooth Device (RFCOMM Protocol TDI)
Intel(R) Ethernet Connection (2) I218-V
        -fe80:0:0:0:4093:d169:536c:7c7c%eth7:fe80:0:0:0:4093:d169:536c:7c7c%eth7 - [B@16b4a017
Microsoft Wi-Fi Direct Virtual Adapter
        -fe80:0:0:0:103e:cdf0:c0ac:1751%wlan1:fe80:0:0:0:103e:cdf0:c0ac:1751%wlan1 - [B@8807e25
VirtualBox Host-Only Ethernet Adapter-HHD Software NDIS 6.0 Filter Driver-0000
VirtualBox Host-Only Ethernet Adapter-WFP Native MAC Layer LightWeight Filter-0000
VirtualBox Host-Only Ethernet Adapter-HHD Software NDIS 6.0 Filter Driver-0001
VirtualBox Host-Only Ethernet Adapter-HHD Software NDIS 6.0 Filter Driver-0002
VirtualBox Host-Only Ethernet Adapter-VirtualBox NDIS Light-Weight Filter-0000
VirtualBox Host-Only Ethernet Adapter-HHD Software NDIS 6.0 Filter Driver-0003
VirtualBox Host-Only Ethernet Adapter-QoS Packet Scheduler-0000
VirtualBox Host-Only Ethernet Adapter-HHD Software NDIS 6.0 Filter Driver-0004
VirtualBox Host-Only Ethernet Adapter-WFP 802.3 MAC Layer LightWeight Filter-0000
VirtualBox Host-Only Ethernet Adapter-HHD Software NDIS 6.0 Filter Driver-0005
Intel(R) Ethernet Connection (2) I218-V-HHD Software NDIS 6.0 Filter Driver-0000
Intel(R) Ethernet Connection (2) I218-V-WFP Native MAC Layer LightWeight Filter-0000
Intel(R) Ethernet Connection (2) I218-V-HHD Software NDIS 6.0 Filter Driver-0001
Intel(R) Ethernet Connection (2) I218-V-Shrew Soft Lightweight Filter-0000
Intel(R) Ethernet Connection (2) I218-V-HHD Software NDIS 6.0 Filter Driver-0002
Intel(R) Ethernet Connection (2) I218-V-VirtualBox NDIS Light-Weight Filter-0000
Intel(R) Ethernet Connection (2) I218-V-HHD Software NDIS 6.0 Filter Driver-0003
Intel(R) Ethernet Connection (2) I218-V-QoS Packet Scheduler-0000
Intel(R) Ethernet Connection (2) I218-V-HHD Software NDIS 6.0 Filter Driver-0004
Intel(R) Ethernet Connection (2) I218-V-WFP 802.3 MAC Layer LightWeight Filter-0000
Intel(R) Ethernet Connection (2) I218-V-HHD Software NDIS 6.0 Filter Driver-0005
Broadcom 802.11ac Network Adapter-WFP Native MAC Layer LightWeight Filter-0000
Broadcom 802.11ac Network Adapter-Virtual WiFi Filter Driver-0000
Broadcom 802.11ac Network Adapter-Native WiFi Filter Driver-0000
Broadcom 802.11ac Network Adapter-HHD Software NDIS 6.0 Filter Driver-0003
Broadcom 802.11ac Network Adapter-Shrew Soft Lightweight Filter-0000
Broadcom 802.11ac Network Adapter-HHD Software NDIS 6.0 Filter Driver-0004
Broadcom 802.11ac Network Adapter-VirtualBox NDIS Light-Weight Filter-0000
Broadcom 802.11ac Network Adapter-HHD Software NDIS 6.0 Filter Driver-0005
Broadcom 802.11ac Network Adapter-QoS Packet Scheduler-0000
Broadcom 802.11ac Network Adapter-HHD Software NDIS 6.0 Filter Driver-0006
Broadcom 802.11ac Network Adapter-WFP 802.3 MAC Layer LightWeight Filter-0000
Broadcom 802.11ac Network Adapter-HHD Software NDIS 6.0 Filter Driver-0007
Microsoft Wi-Fi Direct Virtual Adapter-WFP Native MAC Layer LightWeight Filter-0000
Microsoft Wi-Fi Direct Virtual Adapter-Native WiFi Filter Driver-0000
Microsoft Wi-Fi Direct Virtual Adapter-HHD Software NDIS 6.0 Filter Driver-0002
Microsoft Wi-Fi Direct Virtual Adapter-Shrew Soft Lightweight Filter-0000
Microsoft Wi-Fi Direct Virtual Adapter-HHD Software NDIS 6.0 Filter Driver-0003
Microsoft Wi-Fi Direct Virtual Adapter-VirtualBox NDIS Light-Weight Filter-0000
Microsoft Wi-Fi Direct Virtual Adapter-HHD Software NDIS 6.0 Filter Driver-0004
Microsoft Wi-Fi Direct Virtual Adapter-QoS Packet Scheduler-0000
Microsoft Wi-Fi Direct Virtual Adapter-HHD Software NDIS 6.0 Filter Driver-0005
Microsoft Wi-Fi Direct Virtual Adapter-WFP 802.3 MAC Layer LightWeight Filter-0000
Microsoft Wi-Fi Direct Virtual Adapter-HHD Software NDIS 6.0 Filter Driver-0006

मेरे उपयोग के लिए मैं एक Upnp सर्वर स्थापित कर रहा हूं, इसने उस 'पैटर्न' को समझने में मदद की, जिसकी मुझे तलाश थी। दी गई कुछ वस्तुएँ ईथरनेट एडेप्टर, नेटवर्क एडेप्टर, वर्चुअल नेटवर्क एडेप्टर, ड्राइवर और वीपीएन क्लाइंट एडेप्टर हैं। हर चीज का एक पता भी नहीं होता। तो आप इंटरफ़ेस ऑब्जेक्ट को छोड़ना नहीं चाहेंगे।

आप इसे वर्तमान के लिए लूप में भी जोड़ सकते हैं NetworkInterface i

while(interfaces.hasMoreElements()){
    Enumeration<InetAddress> addresses = i.getInetAddresses();
    System.out.println(i.getDisplayName());
    System.out.println("\t- name:" + i.getName());
    System.out.println("\t- idx:" + i.getIndex());
    System.out.println("\t- max trans unit (MTU):" + i.getMTU());
    System.out.println("\t- is loopback:" + i.isLoopback());
    System.out.println("\t- is PPP:" + i.isPointToPoint());
    System.out.println("\t- isUp:" + i.isUp());
    System.out.println("\t- isVirtual:" + i.isVirtual());
    System.out.println("\t- supportsMulticast:" + i.supportsMulticast());
}

और आप इस तरह से अपने आउटपुट में जानकारी देखेंगे:

Software Loopback Interface 1
    - name:lo
    - idx:1
    - max trans unit (MTU):-1
    - is loopback:true
    - is PPP:false
    - isUp:true
    - isVirtual:false
    - supportsMulticast:true
        -ADRESS: [127.0.0.1(VIKING-192.168.56.1)]127.0.0.1:127.0.0.1 - [B@19e1023e
        -ADRESS: [0:0:0:0:0:0:0:1(VIKING-192.168.56.1)]0:0:0:0:0:0:0:1:0:0:0:0:0:0:0:1 - [B@7cef4e59
Broadcom 802.11ac Network Adapter
    - name:wlan0
    - idx:2
    - max trans unit (MTU):1500
    - is loopback:false
    - is PPP:false
    - isUp:true
    - isVirtual:false
    - supportsMulticast:true
        -ADRESS: [VIKING.monkeybrains.net(VIKING-192.168.56.1)]VIKING.monkeybrains.net:192.168.1.142 - [B@64b8f8f4
        -ADRESS: [fe80:0:0:0:81fa:31d:21c9:85cd%wlan0(VIKING-192.168.56.1)]fe80:0:0:0:81fa:31d:21c9:85cd%wlan0:fe80:0:0:0:81fa:31d:21c9:85cd%wlan0 - [B@2db0f6b2
Microsoft Kernel Debug Network Adapter
    - name:eth0
    - idx:3
    - max trans unit (MTU):-1
    - is loopback:false
    - is PPP:false
    - isUp:false
    - isVirtual:false
    - supportsMulticast:true

3

स्थानीय पता प्राप्त करने के लिए InetAddress.getLocalHost () का उपयोग करें

import java.net.InetAddress;

try {
  InetAddress addr = InetAddress.getLocalHost();            
  System.out.println(addr.getHostAddress());
} catch (UnknownHostException e) {
}

मेरा पीपीपी कनेक्शन आईपी पता है: 117.204.44.192 लेकिन उपरोक्त मुझे 192.168.1.2 रिटर्न
sididhar

आपको उपलब्ध सभी InetAddress उदाहरणों को क्रॉल करना होगा और यह पता लगाना होगा कि कौन सा उचित है।
डिकेड

1
import java.net.InetAddress;
import java.net.NetworkInterface;
import java.util.Enumeration;

public class IpAddress {

NetworkInterface ifcfg;
Enumeration<InetAddress> addresses;
String address;

public String getIpAddress(String host) {
    try {
        ifcfg = NetworkInterface.getByName(host);
        addresses = ifcfg.getInetAddresses();
        while (addresses.hasMoreElements()) {
            address = addresses.nextElement().toString();
            address = address.replace("/", "");
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
    return ifcfg.toString();
}
}

1

काम करने के लिए लगता है कि एक सरल दृष्टिकोण ...

String getPublicIPv4() throws UnknownHostException, SocketException{
    Enumeration<NetworkInterface> e = NetworkInterface.getNetworkInterfaces();
    String ipToReturn = null;
    while(e.hasMoreElements())
    {
        NetworkInterface n = (NetworkInterface) e.nextElement();
        Enumeration<InetAddress> ee = n.getInetAddresses();
        while (ee.hasMoreElements())
        {
            InetAddress i = (InetAddress) ee.nextElement();
            String currentAddress = i.getHostAddress();
            logger.trace("IP address "+currentAddress+ " found");
            if(!i.isSiteLocalAddress()&&!i.isLoopbackAddress() && validate(currentAddress)){
                ipToReturn = currentAddress;    
            }else{
                System.out.println("Address not validated as public IPv4");
            }

        }
    }

    return ipToReturn;
}

private static final Pattern IPv4RegexPattern = Pattern.compile(
        "^(([01]?\\d\\d?|2[0-4]\\d|25[0-5])\\.){3}([01]?\\d\\d?|2[0-4]\\d|25[0-5])$");

public static boolean validate(final String ip) {
    return IPv4RegexPattern.matcher(ip).matches();
}

1

यह आपके नेटवर्क का IP पता हो जाता है यदि आपकी मशीन किसी नेटवर्क का हिस्सा है

try {
    System.out.println(InetAddress.getLocalHost().getHostAddress());
} catch (UnknownHostException e) {
    e.printStackTrace();
}

0

आमतौर पर जब मैं cmyip.com या www.iplocation.net जैसे मेरे सार्वजनिक आईपी पते को खोजने की कोशिश करता हूं , तो मैं इस तरह का उपयोग करता हूं:

public static String myPublicIp() {

    /*nslookup myip.opendns.com resolver1.opendns.com*/
    String ipAdressDns  = "";
    try {
        String command = "nslookup myip.opendns.com resolver1.opendns.com";
        Process proc = Runtime.getRuntime().exec(command);

        BufferedReader stdInput = new BufferedReader(new InputStreamReader(proc.getInputStream()));

        String s;
        while ((s = stdInput.readLine()) != null) {
            ipAdressDns  += s + "\n";
        }
    } catch (IOException e) {
        e.printStackTrace();
    }

    return ipAdressDns ;
}

0

चूंकि मेरे सिस्टम (जैसे कई अन्य सिस्टम) में विभिन्न नेटवर्क इंटरफेस थे। InetAddress.getLocalHost()या Inet4Address.getLocalHost()बस एक कि मैं इच्छा नहीं लौटा। इसलिए मुझे इस भोले दृष्टिकोण का उपयोग करना पड़ा।

InetAddress[] allAddresses = Inet4Address.getAllByName("YourComputerHostName");
        InetAddress desiredAddress;
        //In order to find the desired Ip to be routed by other modules (WiFi adapter)
        for (InetAddress address :
                allAddresses) {
            if (address.getHostAddress().startsWith("192.168.2")) {
                desiredAddress = address;
            }
        }
// Use the desired address for whatever purpose.

बस सावधान रहें कि इस दृष्टिकोण में मुझे पहले से ही पता था कि मेरा वांछित आईपी पता 192.168.2सबनेट में है।


-1
public static String getIpAddress() {

    String ipAddress = null;

    try {
        Enumeration<NetworkInterface> networkInterfaces = NetworkInterface.getNetworkInterfaces();

        while (networkInterfaces.hasMoreElements()) {

            NetworkInterface networkInterface = networkInterfaces.nextElement();

            byte[] hardwareAddress = networkInterface.getHardwareAddress();
            if (null == hardwareAddress || 0 == hardwareAddress.length || (0 == hardwareAddress[0] && 0 == hardwareAddress[1] && 0 == hardwareAddress[2])) continue;

            Enumeration<InetAddress> inetAddresses = networkInterface.getInetAddresses();

            if (inetAddresses.hasMoreElements()) ipAddress = inetAddresses.nextElement().toString();

            break;
        }
    } catch (SocketException e) {
        e.printStackTrace();
    }

    return ipAddress;
}

कृपया, अपने कोड के बारे में कुछ स्पष्टीकरण जोड़ें।
HCarrasko
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.