AndroidデバイスのパブリックIPアドレスを取得する方法を知っている人はいますか?
サーバーソケットを実行しようとしています(単純なp2pで実験しているだけです)。
これには、ローカルユーザーとリモートユーザーにお互いのパブリックIPを通知する必要があります。私はこのスレッドを見つけました コードからデバイスのIPアドレスを取得する方法は? 記事へのリンクが含まれています( http://www.droidnova.com/get-the-ip -address-of-your-device、304.html )IPを取得する方法を示します。ただし、ルーターを介して接続するとローカルIPが返されるため、代わりに実際のパブリックIPを取得したいと思います。
TIA
http://automation.whatismyip.com/n09230945.asp にアクセスして、それをこすりますか?
whatismyip.com IPを取得するのに最適ですが、サイト requests 5分に1回程度しかヒットしません。
2015年2月の更新
WhatIsMyIpは、使用できる 開発者API を公開するようになりました。
checkip.org からパブリックIPアドレスを解析します( JSoup を使用):
public static String getPublicIP() throws IOException
{
Document doc = Jsoup.connect("http://www.checkip.org").get();
return doc.getElementById("yourip").select("h1").first().select("span").text();
}
private class ExternalIP extends AsyncTask<Void, Void, String> {
protected String doInBackground(Void... urls) {
String ip = "Empty";
try {
HttpClient httpclient = new DefaultHttpClient();
HttpGet httpget = new HttpGet("http://wtfismyip.com/text");
HttpResponse response;
response = httpclient.execute(httpget);
HttpEntity entity = response.getEntity();
if (entity != null) {
long len = entity.getContentLength();
if (len != -1 && len < 1024) {
String str = EntityUtils.toString(entity);
ip = str.replace("\n", "");
} else {
ip = "Response too long or error.";
}
} else {
ip = "Null:" + response.getStatusLine().toString();
}
} catch (Exception e) {
ip = "Error";
}
return ip;
}
protected void onPostExecute(String result) {
// External IP
Log.d("ExternalIP", result);
}
}
パブリックIPを見つけるには、 http://www.whatismyip.com/ のような外部サービスを呼び出し、応答として外部IPを取得する必要があります。
一般的な場合、できません。おそらく、デバイスにはパブリックIPアドレスがありません(または、少なくとも、接続を開くことができるアドレスはありません)。 NATルーターを介して接続している場合、ルーターはありません。
http://touch.whatsmyip.org/ のようなツールによって返されるIPアドレスは、デバイスではなく、NATルーターの公開アドレスになります。
多くの携帯電話会社と同様に、ほとんどの家庭および企業ネットワークはNATルーターを使用しています。
この関数を使用してパブリックIPアドレスを取得し、最初に接続があるかどうかを確認してから、パブリックIPアドレスを返すように要求します。
public static String getPublicIPAddress(Context context) {
//final NetworkInfo info = NetworkUtils.getNetworkInfo(context);
ConnectivityManager cm = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);
final NetworkInfo info = cm.getActiveNetworkInfo();
RunnableFuture<String> futureRun = new FutureTask<>(new Callable<String>() {
@Override
public String call() throws Exception {
if ((info != null && info.isAvailable()) && (info.isConnected())) {
StringBuilder response = new StringBuilder();
try {
HttpURLConnection urlConnection = (HttpURLConnection) (
new URL("http://checkip.amazonaws.com/").openConnection());
urlConnection.setRequestProperty("User-Agent", "Android-device");
//urlConnection.setRequestProperty("Connection", "close");
urlConnection.setReadTimeout(15000);
urlConnection.setConnectTimeout(15000);
urlConnection.setRequestMethod("GET");
urlConnection.setRequestProperty("Content-type", "application/json");
urlConnection.connect();
int responseCode = urlConnection.getResponseCode();
if (responseCode == HttpURLConnection.HTTP_OK) {
InputStream in = new BufferedInputStream(urlConnection.getInputStream());
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
String line;
while ((line = reader.readLine()) != null) {
response.append(line);
}
}
urlConnection.disconnect();
return response.toString();
} catch (Exception e) {
e.printStackTrace();
}
} else {
//Log.w(TAG, "No network available INTERNET OFF!");
return null;
}
return null;
}
});
new Thread(futureRun).start();
try {
return futureRun.get();
} catch (InterruptedException | ExecutionException e) {
e.printStackTrace();
return null;
}
}
確かにそれは最適化することができます、私は彼らの解決策に貢献するマスターにそれを任せます。
これが私のやり方です。
DNSレコードがあります
ip4 IN A 91.123.123.123
ip6 IN AAAA 1234:1234:1234:1234 :: 1
PHPスクリプトがあります PHP対応のWebサイトにあります。 (このスクリプトを適応させる必要があります)
< ?PHP
echo $_SERVER['REMOTE_ADDR'];? >
Ip6.mydomain.com/ip/を呼び出すと、IPv6パブリックIPがあります。 ip4.mydomain.com/ip/を呼び出すと、IPv4パブリックIPがあります。
次に、次のJavaクラスがあります。
public class IPResolver {
private HttpClient client = null;
private final Context context;
public IPResolver(Context context) {
this.context = context;
}
public String getIp4() {
String ip4 = getPage("http://ip4.mysite.ch/scripts/ip");
return ip4;
}
public String getIp6() {
String ip6 = getPage("http://ip6.mysite.ch/scripts/ip");
return ip6;
}
private String getPage(String url) {
// Set params of the http client
if (client == null) {
HttpParams httpParameters = new BasicHttpParams();
int timeoutConnection = 2000;
HttpConnectionParams.setConnectionTimeout(httpParameters,
timeoutConnection);
int timeoutSocket = 2000;
HttpConnectionParams.setSoTimeout(httpParameters, timeoutSocket);
client = new DefaultHttpClient(httpParameters);
}
try {
HttpGet request = new HttpGet(url);
HttpResponse response = client.execute(request);
String html = "";
InputStream in = response.getEntity().getContent();
BufferedReader reader = new BufferedReader(
new InputStreamReader(in));
StringBuilder str = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
str.append(line);
}
in.close();
html = str.toString();
return html.trim();
} catch (Throwable t) {
// t.printStackTrace();
}
return null;
}
}
public class Test extends AsyncTask {
@Override
protected Object doInBackground(Object[] objects) {
URL whatismyip = null;
try {
whatismyip = new URL("http://icanhazip.com/");
try {
BufferedReader in = new BufferedReader(new InputStreamReader(
whatismyip.openStream()));
String ip = in.readLine(); //you get the IP as a String
Log.i(TAG, "EXT IP: " + ip);
} catch (IOException e) {
e.printStackTrace();
}
} catch (MalformedURLException e) {
e.printStackTrace();
}
return null;
}
}
Ipinfo.io/ipへのHTTPGETを実行しているだけです
実装は次のとおりです。
import Java.io.BufferedReader;
import Java.io.IOException;
import Java.io.InputStreamReader;
import Java.net.URL;
import Java.net.HttpURLConnection;
public class PublicIP {
public static String get() {
return PublicIP.get(false);
}
public static String get(boolean verbose) {
String stringUrl = "https://ipinfo.io/ip";
try {
URL url = new URL(stringUrl);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
if(verbose) {
int responseCode = conn.getResponseCode();
System.out.println("\nSending 'GET' request to URL : " + url);
System.out.println("Response Code : " + responseCode);
}
StringBuffer response = new StringBuffer();
BufferedReader in = new BufferedReader(
new InputStreamReader(conn.getInputStream()));
String inputLine;
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
if(verbose) {
//print result
System.out.println("My Public IP address:" + response.toString());
}
return response.toString();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
public static void main(String[] args) {
System.out.println(PublicIP.get());
}
}
public class getIp extends AsyncTask<String, String, String> {
String result;
@Override
protected String doInBackground(String... strings) {
CustomHttpClient client = new CustomHttpClient();
try {
result = client.executeGet("http://checkip.amazonaws.com/");
} catch (Exception e) {
e.printStackTrace();
}
return result;
}
}
どこにでも電話して
try {
ip = new getIp().execute().get();
} catch (InterruptedException e) {
e.printStackTrace();
} catch (ExecutionException e) {
e.printStackTrace();
}
CustomHttpClient.Java
import Android.graphics.Bitmap;
import Android.graphics.BitmapFactory;
import org.Apache.http.HttpEntity;
import org.Apache.http.HttpResponse;
import org.Apache.http.NameValuePair;
import org.Apache.http.auth.UsernamePasswordCredentials;
import org.Apache.http.client.HttpClient;
import org.Apache.http.client.entity.UrlEncodedFormEntity;
import org.Apache.http.client.methods.HttpGet;
import org.Apache.http.client.methods.HttpPost;
import org.Apache.http.conn.params.ConnManagerParams;
import org.Apache.http.conn.params.ConnPerRouteBean;
import org.Apache.http.conn.scheme.PlainSocketFactory;
import org.Apache.http.conn.scheme.Scheme;
import org.Apache.http.conn.scheme.SchemeRegistry;
import org.Apache.http.conn.ssl.SSLSocketFactory;
import org.Apache.http.entity.BufferedHttpEntity;
import org.Apache.http.impl.auth.BasicScheme;
import org.Apache.http.impl.client.DefaultHttpClient;
import org.Apache.http.impl.conn.tsccm.ThreadSafeClientConnManager;
import org.Apache.http.params.BasicHttpParams;
import org.Apache.http.params.HttpConnectionParams;
import org.Apache.http.params.HttpParams;
import Java.io.BufferedReader;
import Java.io.IOException;
import Java.io.InputStream;
import Java.io.InputStreamReader;
import Java.util.ArrayList;
public class CustomHttpClient {
private static HttpClient custHttpClient;
public static final int MAX_TOTAL_CONNECTIONS = 1000;
public static final int MAX_CONNECTIONS_PER_ROUTE = 1500;
public static final int TIMEOUT_CONNECT = 150000;
public static final int TIMEOUT_READ = 150000;
public static HttpClient getHttpClient() {
if (custHttpClient == null) {
SchemeRegistry schemeRegistry = new SchemeRegistry();
schemeRegistry.register(new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
schemeRegistry.register(new Scheme("https",SSLSocketFactory.getSocketFactory(), 443));
HttpParams connManagerParams = new BasicHttpParams();
ConnManagerParams.setMaxTotalConnections(connManagerParams, MAX_TOTAL_CONNECTIONS);
ConnManagerParams.setMaxConnectionsPerRoute(connManagerParams, new ConnPerRouteBean(MAX_CONNECTIONS_PER_ROUTE));
HttpConnectionParams.setConnectionTimeout(connManagerParams, TIMEOUT_CONNECT);
HttpConnectionParams.setSoTimeout(connManagerParams, TIMEOUT_READ);
ThreadSafeClientConnManager cm = new ThreadSafeClientConnManager(new BasicHttpParams(), schemeRegistry);
custHttpClient = new DefaultHttpClient(cm, null);
HttpParams para = custHttpClient.getParams();
HttpConnectionParams.setConnectionTimeout(para, (30 * 10000));
HttpConnectionParams.setSoTimeout(para, (30 * 10000));
ConnManagerParams.setTimeout(para, (30 * 10000));
}
return custHttpClient;
}
public static String executePost(String urlPostFix,ArrayList<NameValuePair> postedValues)
throws Exception {
String url = urlPostFix;
BufferedReader in = null;
try {
System.setProperty("http.keepAlive", "false");
HttpClient client = getHttpClient();
HttpPost request = new HttpPost(url);
request.setHeader("Accept", "application/json");
request.setHeader("Content-Type", "application/x-www-form-urlencoded");
UrlEncodedFormEntity formEntity = new UrlEncodedFormEntity(postedValues);
formEntity.setContentType("application/json");
request.setEntity(formEntity);
HttpResponse response = client.execute(request);
in = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
StringBuffer sb = new StringBuffer("");
String line = "";
String NL = System.getProperty("line.separator");
while ((line = in.readLine()) != null) {
sb.append(line + NL);
}
in.close();
String result = sb.toString();
return result;
} finally {
if (in != null) {
try {
in.close();
} catch (IOException e) {
}
}
}
}
public static String executeGet(String urlPostFix)
throws Exception {
String url = urlPostFix;
BufferedReader in = null;
try {
HttpClient client = getHttpClient();
HttpGet request = new HttpGet( url);
request.setHeader("Accept", "application/json");
request.setHeader("Content-Type", "application/x-www-form-urlencoded");
HttpResponse response = client.execute(request);
in = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
StringBuffer sb = new StringBuffer("");
String line = "";
String NL = System.getProperty("line.separator");
while ((line = in.readLine()) != null) {
sb.append(line + NL);
}
in.close();
String result = sb.toString();
return result;
} finally {
if (in != null) {
try {
in.close();
} catch (IOException e) {
}
}
}
}
public static Bitmap executeImageGet(String urlPostFix)
throws Exception {
String url = urlPostFix;
InputStream in = null;
try {
HttpClient client = getHttpClient();
HttpGet request = new HttpGet(url);
HttpResponse response = client.execute(request);
HttpEntity entity = response.getEntity();
BufferedHttpEntity bufHttpEntity = new BufferedHttpEntity(entity);
in = bufHttpEntity.getContent();
Bitmap bitmap = BitmapFactory.decodeStream(in);
in.close();
return bitmap;
} finally {
if (in != null) {
try {
in.close();
} catch (IOException e) {
}
}
}
}
}
これはEng.Fouadの回答の続きであり、checkip.orgからパブリックIPアドレスを解析します( JSoup を使用) :::
メソッド(前のメソッドから例外エラーを受け取った場合):
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import Java.io.IOException;
**********
public static String getPublicIp()
{
String myip="";
try{
Document doc = Jsoup.connect("http://www.checkip.org").get();
myip = doc.getElementById("yourip").select("h1").first().select("span").text();
}
catch(IOException e){
e.printStackTrace();
}
return myip;
}
呼び出しメソッドの例:
<your class name> wifiInfo = new <your class name>();
String myIP = wifiInfo.getPublicIp();
build.gradle依存関係で次のライブラリをコンパイルします
compile 'org.jsoup:jsoup:1.9.2'
JSoupはJava APIバージョン8を使用してコンパイルされるため、build.gradle defaultConfig {}内に次を追加します。
jackOptions{
enabled true
}
コンパイルオプションを次のように変更します。
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
最後になりましたが、次のコードをonCreate()メソッドの下に配置します。デフォルトでは、UIによるネットワーク操作(サービスまたはAsyncTaskを介して推奨)を実行してからコードを再構築することは想定されていません。
StrictMode.enableDefaults();
LolipopとKitKatでテストおよび作業中。
org.springframework.web.client.RestTemplate
と Amazon API を使用すると、パブリックIPを簡単に取得できます。
public static String getPublicIP() {
try {
RestTemplate restTemplate = new RestTemplate();
return restTemplate.getForObject("http://checkip.amazonaws.com/", String.class).replace("\n","");
} catch ( Exception e ) {
return "";
}
}
FreeGeoIPを使用しており、IP-> GEOも受け取ります。
http://freegeoip.net/json
Whatismyipと比較する別のソリューション