我正在尝试编写一个自动连接到我的大学热点的Android软件。
现在,我想知道我是在当地的热点还是在互联网上。 我的方法是尝试解析像“http://google.com”这样的网站。 如果返回的IP是本地的,我知道我在热点(但可能不是好的)感谢本地DNS。如果ip是外部的,我会认为它是谷歌的。
但是,我不知道是不是因为我的大学防火墙,但是当我尝试解析任何主机时,它说:“无法解析主机”http://google.com“:没有关联的地址主机名为“。
这是我的代码:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView tv = (TextView) findViewById(R.id.tv);
WifiManager wm = (WifiManager) this.getSystemService(Context.WIFI_SERVICE);
WifiInfo wi = wm.getConnectionInfo();
new Thread(new Runnable() {
@Override
public void run() {
String hostName = "http://google.com";
InetAddress hostInetAddress;
try {
hostInetAddress = InetAddress.getByName(hostName);
} catch(UnknownHostException e) {
e.printStackTrace();
}
}
}).start();
wm.getDhcpInfo();
String toto = wm.getDhcpInfo().toString();
}
这是我的清单:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.test"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="21" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
答案 0 :(得分:0)
这非常有效:
public boolean isNetworkAvailable() {
ConnectivityManager cm = (ConnectivityManager)
getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo networkInfo = cm.getActiveNetworkInfo();
// if no network is available networkInfo will be null
// otherwise check if we are connected
if (networkInfo != null && networkInfo.isConnected()) {
return true;
}
return false;
}