如何从Android Emulator连接到localhost Web服务器?

时间:2014-05-06 10:29:26

标签: android localhost

我想从Android代码中检查localhost Web服务器的连接状态。但我得到的结果相同" 未连接"在线/离线情况下。

我不明白我该怎么做。我还在Manifest文件中给了Internet许可

Java代码

     try
     {

            HttpClient httpclient = new DefaultHttpClient();

            HttpPost httpPost = new HttpPost("http://10.0.2.2/ABC");

            httpclient.execute(httpPost);

            tt.setText(" Connected to Localhost ");

    }       
    catch(Exception e)
    {

            tt.setText(" Not Connected ");

    }

清单文件:

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

这是我的上述代码,请告诉我,可能是什么解决方案。

0 个答案:

没有答案