String name = nameEditText.getText().toString();
String age =  ageEditText.getText().toString();
HttpClient client = new DefaultHttpClient();
HttpPost request = new HttpPost(url);
List<BasicNameValuePair> nameValuePairs = new ArrayList<BasicNameValuePair>();
nameValuePairs.add(new BasicNameValuePair("name", name));
nameValuePairs.add(new BasicNameValuePair("age", age));
request.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = client.execute(request);这是android请求web端。如何在web端action中取得name和age?
请指教。谢谢。