Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
How to get ip address of the device?

Below is a snippet of how I am trying to get the external IP. However, it does not return anything...

public String getIpAddress() {

    try {
            HttpClient httpclient = new DefaultHttpClient();
            HttpGet httpget = new HttpGet("http://www.whatismyip.com/?404");
            // HttpGet httpget = new HttpGet("http://whatismyip.com.au/");
            // HttpGet httpget = new HttpGet("http://www.whatismyip.org/");
            HttpResponse response;

            response = httpclient.execute(httpget);

            //Log.i("externalip",response.getStatusLine().toString());

            HttpEntity entity = response.getEntity();
            entity.getContentLength();
            str = EntityUtils.toString(entity);
    }
    catch (Exception e)
    {
    }
    return str;

}
share|improve this question
Where is the log cat? – Dinesh Venkata Oct 12 '12 at 7:44

marked as duplicate by Toby Allen, Andrew, Guvante, Pondlife, martin clayton Oct 12 '12 at 21:06

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 3 down vote accepted
public String getIpAddress() {

            String ip;
 try {
            HttpClient httpclient = new DefaultHttpClient();
            HttpGet httpget = new HttpGet("http://ip2country.sourceforge.net/ip2c.php?format=JSON");
            // HttpGet httpget = new HttpGet("http://whatismyip.com.au/");
            // HttpGet httpget = new HttpGet("http://www.whatismyip.org/");
            HttpResponse response;

            response = httpclient.execute(httpget);

            //Log.i("externalip",response.getStatusLine().toString());

            HttpEntity entity = response.getEntity();
            entity.getContentLength();
            str = EntityUtils.toString(entity);

            Toast.makeText(getApplicationContext(), str, Toast.LENGTH_LONG).show();

            JSONObject json_data = new JSONObject(str);


ip = json_data.getString("ip");

            Toast.makeText(getApplicationContext(), ip, Toast.LENGTH_LONG).show();
    }
    catch (Exception e)
    {
    }

return ip;

}
share|improve this answer
<uses-permission android:name="android.permission.INTERNET"/> – Nirav Ranpara Oct 12 '12 at 8:25
THANK YOU!!!!.. been stuck here since this morning.. IT FINALLY WORKED... := – omi0301 Oct 12 '12 at 8:28
Ask me any time . android - php problem . Thanks – Nirav Ranpara Oct 12 '12 at 8:29

Use this site

http://code.jsontest.com/

This is also

http://ip2country.sourceforge.net/ip2c.php?format=JSON

Get Ip address using Json

share|improve this answer
@Niraz Ranpara - Hi, I tried what you said.. IT did reflect on my php server, but the ip address is shown like this - alert("IP Address: 116.50.246.68"); alert("Browser: Mozilla/5.0 (Windows NT 5.1; rv:15.0) Gecko/20100101 Firefox/15.0.1"); – omi0301 Oct 12 '12 at 8:11
it has the correct ip address. However, how can i get that value alone to display on php? – omi0301 Oct 12 '12 at 8:18
See new completed Ans. I think now you get your solution. – Nirav Ranpara Oct 12 '12 at 8:23
@omi0301 : Which kind of application you developed ? – Nirav Ranpara Oct 12 '12 at 8:46
Just a simple app.. A cookbook app.. :) – omi0301 Oct 12 '12 at 9:11
show 1 more comment

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