当前位置:  开发笔记 > 编程语言 > 正文

Android HTTP连接

如何解决《AndroidHTTP连接》经验,为你挑选了1个好方法。

任何人都可以告诉我为什么这在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

谢谢



1> Reto Meier..:

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


因此清单将遵循这种一般结构

    
  
  
    [ .. Your Activities go here ]
  

推荐阅读
360691894_8a5c48
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有