I'm not too sure how to go about getting the external IP address of the machine as a computer outside of a network would see it. My following IPAddress class only gets the local IP address of the machine.

Any help would be appreciated.

Thanks.

public class IPAddress {

  private InetAddress thisIp;

  private String thisIpAddress;

  private void setIpAdd()
  {
    try
    {
       InetAddress thisIp = InetAddress.getLocalHost();
       thisIpAddress = thisIp.getHostAddress().toString();
    }
    catch(Exception e){}
  }

  protected String getIpAddress()
  {
     setIpAdd();
     return thisIpAddress;
  }

}

link|improve this question

68% accept rate
5  
You are aware that a machine can have many public addresses at once? They're really associated with a network interface, not a machine. – Donal Fellows May 30 '10 at 15:32
feedback

6 Answers

up vote 19 down vote accepted

I am not sure if you can grab that IP from code that runs on the local machine.

You can however build code that runs on a website, say in JSP, and then use something that returns the IP of where the request came from:

request.getRemoteAddr()

Or simply use already-existing services that do this, then parse the answer from the service to find out the IP.

Edit:

The other answers pointed out to the whatismyip.com website, I found out that they have a link that you can scrap the IP from, here is some Java code I put together to do it:

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

URL whatismyip = new URL("http://automation.whatismyip.com/n09230945.asp");
BufferedReader in = new BufferedReader(new InputStreamReader(
                whatismyip.openStream()));

String ip = in.readLine(); //you get the IP as a String
System.out.println(ip);
link|improve this answer
this is fantastic! nice answer. – Julio May 30 '10 at 15:51
1  
Word of warning: they've adjusted the automation URL to automation.whatismyip.com/n09230945.asp – thegrinner Dec 18 '11 at 23:48
I would suggest implementing at least two servers that serves your ip, in case one of them is down at the moment (with correct error handling of course). My choise would be externalip.net (click the "Need an API?" link). Have been using that site for well over a year now, haven't had any problems so far and it's a fast service that always returns a quick response. – Felthragar Feb 26 at 9:43
feedback

Make a HttpURLConnection to some site like www.whatismyip.com and parse that :-)

link|improve this answer
feedback

It's not that easy since a machine inside a LAN usually doesn't care about the external IP of its router to the internet.. it simply doesn't need it!

I would suggest you to exploit this by opening a site like http://www.whatismyip.com/ and getting the IP number by parsing the html results.. it shouldn't be that hard!

link|improve this answer
1  
You don't have to parse html. The first line of the webpage source of whatismyip.com is your external IP. – Martijn Courteaux May 30 '10 at 17:51
feedback

http://jstun.javawi.de/ will do it - provided your gateway device does STUN )most do)

link|improve this answer
feedback

The truth is, 'you can't' in the sense that you posed the question. NAT happens outside of the protocol. There is not way for your machine's kernel to know how your NAT box is mapping from external to internal IP addressees. Other answers here offer tricks involving methods of talking to outside web sites.

link|improve this answer
feedback

If you are using JAVA based webapp and if you want to grab the client's (One who makes the request via a browser) external ip try deploying the app in a public domain and use request.getRemoteAddr() to read the external IP address.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.