我想通過android中的POST方法將一些數據發送到服務器。我正在使用下面的代碼將數據發佈到android中的服務器
DefaultHttpClient hc=new DefaultHttpClient();
ResponseHandler <String> res=new BasicResponseHandler();
HttpPost postMethod=new HttpPost(url);
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("name", "value"));
nameValuePairs.add(new BasicNameValuePair("password", "value"));
postMethod.setEntity(new UrlEncodedFormEntity(nameValuePairs));
String response=hc.execute(postMethod,res);
但我在我的響應XML獲取錯誤響應。錯誤消息是Cookie在客戶機中被禁用。我如何需要在android中啓用cookie?
請將代碼放在代碼塊中。 – xandy 2010-11-01 07:53:23