我正在嘗試使用HttpClient API對服務器進行JSON調用。代碼sinppet如下所示。在HTTP POST中設置參數
HttpClient httpClient = new DefaultHttpClient();
HttpGet httpPost = new HttpPost(URLString);
HttpResponse response = httpClient.execute(httpPost);
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("method", "completeUserLogin"));
String[] params = new String[]{"100408"};
response = httpClient.execute(httpPost);
我想添加params到nameValuePairs。 BasicNameValuePair類不允許添加數組。有什麼想法嗎?
在此先感謝!
你應該嘗試的數組轉換爲通過後預期的字符串表示,並隨後將其加入。 – CasualT
你知道什麼,只是看jeet的答案。 :) – CasualT