Welcome to Discuss Everything Forums...

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed.


 

Reply to Thread

Post a reply to the thread: How to display wifi IP address

Your Message

Click here to log in

How many letters in the word Rabroad

 
 

You may choose an icon for your message from this list

Additional Options

  • Will turn www.example.com into [URL]http://www.example.com[/URL].

Rate Thread

You may rate this thread from 1-star (Terrible) to 5-stars (Excellent) if you wish to do so.

Topic Review (Newest First)

  • 06-04-2022, 07:19 AM
    DavidEvini

    -

    Hi All,I search for a tip on how to display a window on the client screen, in which I would be able to display custom information. In a perfect world, it would be triggered by a right-click on a NPC, something similar to when you address a NPC who will tell you about a quest you can pick.I found SayTo in some pieces of code, but Im not sure this will help.Can one of you show me the way ?I cant test as Im at work Many thanks,Mystemas.
  • 10-11-2013, 05:20 AM
    helenkitkat
    Quote Originally Posted by robstrack420 View Post
    Do you mean your internal IP or the external IP of the wi-fi network?
    for external, when connected to wi-fi on the G1, visit What Is My IP ® | Shows Your IP Address.

    for internal, and for your other question, I'm not sure...
    Thanks for your information. I have checked my external ip address from this site ip-details.com
  • 05-11-2011, 02:41 AM
    killer .

    How to display wifi IP address

    You can click on the link when you are online, and gives you the IP. Unfortunately, it gives you a subnet mask or default gateway that is both important for troubleshooting.
  • 05-10-2011, 09:39 PM
    JaRee

    How to display wifi IP address

    Using a Software, You Can Display a WI-Fi IP Address.it is available in anroidzoom.com..it is easy to use.
  • 05-10-2011, 04:03 PM
    kris c

    How to display wifi IP address

    There's an app available called Network Info II that provides internal, external ip, MAC, SSID, Gateway, DNS Servers, etc and a bunch of other information.

    The other network app I use is Network Mapper that will scan the network you are connected too.

    I've found both useful resolving friends' network issues.
  • 05-10-2011, 10:03 AM
    UrBawlz2

    How to display wifi IP address

    and very Thanks also, this code is very useful
  • 05-10-2011, 06:33 AM
    Sweetheart6262

    How to display wifi IP address

    Thanks guy !
  • 05-10-2011, 01:05 AM
    Kennedy h

    How to display wifi IP address

    In addition, to get it from an application, you can use the following piece of code:

    public String getLocalIpAddress() {
    try {
    for (Enumeration en = NetworkInterface.getNetworkInterfaces(); en.hasMoreElements() {
    NetworkInterface intf = en.nextElement();
    for (Enumeration enumIpAddr = intf.getInetAddresses(); enumIpAddr.hasMoreElements() {
    InetAddress inetAddress = enumIpAddr.nextElement();
    if (!inetAddress.isLoopbackAddress()) {
    return inetAddress.getHostAddress().toString();
    }
    }
    }
    } catch (SocketException ex) {
    Log.e(LOG_TAG, ex.toString());
    }
    return null;
    }

    See:
    http://www.droidnova.com/get-the-ip-address-of-your-device,304.html
  • 05-09-2011, 03:02 PM
    waf14.my-goo.com

    How to display wifi IP address

    Yep, worked like a charm. Thanks

    Hmm, I wish it showed the default gateway too.

    I see that OscanO will do tcp port scans, but it would be nice if it would just do a ping.
  • 05-09-2011, 12:23 PM
    salsagirl40

    How to display wifi IP address

    Weird, I thought I tried that, I'll try again, thanks.
This thread has more than 10 replies. Click here to review the whole thread.

Posting Permissions

  • You may post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts
  •