小弟我需要用手机对网页做get传送资料
目前确定网页方面的功能都是正常的
但是app方面有点问题
程式方面
我是把其中一个按键的功能写成以下这样
HttpClient client = null;
try
{
String url="server的网址";
client = new DefaultHttpClient();
HttpGet get = new HttpGet(url);
HttpResponse response = client.execute(get);
}
catch (Exception e)
{
e.printStackTrace();
}
finally
{
client.getConnectionManager().shutdown();
}
在Androidmanifest.xml也有加入网络存取权限(在安装的时候会显示需要网络权限)
但是执行的时候
按下这个键虽然不会有错误讯息或是没有回应 但就是不会动@@
有没有大大能提供我一个方向?