我是ANDROID的新手。我必须从我的Android应用程序发送一些数据到本地服务器并检索一些信息。我怎样才能做到这一点???请帮帮我
答案 0 :(得分:1)
public void executeHttpPost(String string)抛出异常
{
//这个HttpConnection的方法
尝试
{
HttpClient客户端= new DefaultHttpClient();
HttpPost request = new HttpPost("url");
List<NameValuePair> value=new ArrayList<NameValuePair>();
value.add(new BasicNameValuePair("name",string));
System.out.println("Json obj="+string);
UrlEncodedFormEntity entity=new UrlEncodedFormEntity(value);
request.setEntity(entity);
client.execute(request);
System.out.println("after sending :"+request.toString());
}
catch(Exception e) {System.out.println("Exp="+e);
}
}