HttpClient client = new DefaultHttpClient();
     HttpPost httpPost = new HttpPost("http://www.dudu.com/api.php");
     ArrayList<NameValuePair> params = new ArrayList<NameValuePair>();
     params.add(new BasicNameValuePair("key", "aaaa"));
     params.add(new BasicNameValuePair("method", "bbbb"));
     httpPost.setEntity(new UrlEncodedFormEntity(params));
     HttpResponse response = client.execute(httpPost);
请问我这样写为什么得不到正确结果呢?