我创建了一个包含空活动的新项目,这是我的完整代码:
MainActivity.java
package com.myapp.myapplication;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.Toast;
import java.io.IOException;
public class MainActivity extends AppCompatActivity{
public boolean isConnectedToInternet(){
Runtime runtime = Runtime.getRuntime();
try{
Process ipProcess = runtime.exec("/system/bin/ping -c 1 8.8.8.8");
int exitValue = ipProcess.waitFor();
return (exitValue == 0);
}catch (IOException e){
e.printStackTrace();
}
catch(InterruptedException e){
e.printStackTrace();
}
return false;
}
@Override protected void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if(isConnectedToInternet()){
Toast.makeText(this, "connected to internet", Toast.LENGTH_SHORT).show();
}else{
Toast.makeText(this, "not connected to internet", Toast.LENGTH_SHORT).show();
}
}
}
的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.myapp.myapplication">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
当我在模拟器中启动我的应用程序时,它显示“没有连接到互联网”的祝酒词 - 为什么?
互联网可以在模拟器上运行,我可以在虚拟设备上的模拟器中使用chrome,它可以正确显示youtube.com等。 - 它仅在应用程序中不起作用。
我错过了什么?
答案 0 :(得分:0)
添加
<uses-permission android:name="android.permission.INTERNET" />
在应用程序标记之外的清单中
答案 1 :(得分:0)
使用此代码检查主要
中的intenet连接TestInternet testInternet = new TestInternet();
testInternet.execute();
out of main
class TestInternet extends AsyncTask<Void, Void, Boolean>
{
@Override
protected Boolean doInBackground(Void... params) {
try {
URL url = new URL("http://www.google.com");
HttpURLConnection urlc = (HttpURLConnection) url.openConnection();
urlc.setConnectTimeout(4000);
urlc.connect();
if (urlc.getResponseCode() == 200) {
return true;
}
} catch (MalformedURLException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
return false;
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return false;
}
return false;
}
@Override
protected void onPostExecute(Boolean result)
{
if (!result)
{
// code if not connected
else
{
// code if connected
}
}
}