18

谁能告诉我为什么这在 Android 模拟器中不起作用?从浏览器我可以访问并且服务器是内部的。我能想到的只是我的应用程序缺少一些配置,因此它可以访问网络层。

try {
    InetAddress server = Inet4Address.getByName("thehost");
    //Doesn't work either
    //or InetAddress server2 = Inet4Address.getByAddress(new String("192.168.1.30").getBytes());

    if(server.isReachable(5000)){
        Log.d(TAG, "Ping!");
    }

    Socket clientsocket = new Socket(server, 8080);
} catch (UnknownHostException e) {
    Log.e(TAG, "Server Not Found");
} catch (IOException e) {
    Log.e(TAG, "Couldn't open socket");
}

引发 UnknownHostException

谢谢

4

2 回答 2

32

就配置而言,您需要从应用程序访问 Internet 的唯一设置是 INTERNET 权限,通过在应用程序清单中的应用程序标记之外添加以下行来启用。

<uses-permission android:name="android.permission.INTERNET" />

所以清单将遵循这个一般结构

<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.android.apis">    
  <uses-permission android:name="android.permission.INTERNET" />
  <application 
    android:name="MyApplication"    
    android:label="@string/application_title"
    android:icon="@drawable/my_icon">
    [ .. Your Activities go here ]
  </application>
</manifest>
于 2009-01-14T10:58:28.243 回答
2

由于超时,它可能仍然无法正常工作。由于您需要 root 权限才能发送 ICMP 包,并且 isReachable 的实现将使用慢速 TCP 版本的 ECHO。查看 javaDoc。

于 2009-10-02T11:23:02.930 回答